> + 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
Would it be better to fail? Or fail if the `containerAccess` parameter is other
than private?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/173/files#r29934487