> +   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

The permissions can be part of the database record. You don't even need posix 
level permissions, I think you mostly need owner and private/public.

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

Reply via email to