> + return this;
> + }
> +
> + /**
> + * Sets the public ACL on the container so that anybody can read it.
> + */
> + public UpdateContainerOptions anybodyRead() {
> + this.headers.put(CONTAINER_READ, CONTAINER_ACL_ANYBODY_READ);
> + return this;
> + }
> +
> + /**
> + * Sets the container that will contain object versions.
> + */
> + public UpdateContainerOptions versionsLocation(String containerName) {
> + this.headers.put(CONTAINER_VERSIONS_LOCATION, containerName);
I was hoping to keep all of the constants together in `SwiftConstants` like
`ACCOUNT_*` `CONTAINER_*` `OBJECT_*`, and the idea behind that option is so you
don't have to care about the header constant! :D I can change that real quick,
it makes sense to me.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/107/files#r13035819