> +   public boolean createContainerInLocation(String name, Location location,
> +         CreateContainerOptions createContainerOptions) {
> +      logger.debug("Creating container %s", name);
> +      jdbcContainerNameValidator.validate(name);
> +      containerRepository.create(Container.builder().name(name).build());
> +      return true;
> +   }
> +
> +   @Override
> +   public ContainerAccess getContainerAccess(String name) {
> +      return ContainerAccess.PRIVATE;
> +   }
> +
> +   @Override
> +   public void setContainerAccess(String s, ContainerAccess containerAccess) 
> {
> +      // Unsupported

Since the database can't make public rows, I'm returning 
ContainerAccess.PRIVATE for all the containers and never changing it. Maybe I'm 
missing something here?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/173/files#r29918208

Reply via email to