> +
> + /**
> + * Sets the headers on a container at creation.
> + */
> + public UpdateContainerOptions headers(Multimap<String, String> headers) {
> + if (!headers.isEmpty()) {
> + this.headers.putAll(headers);
> + }
> + return this;
> + }
> +
> + /**
> + * Sets the metadata on a container at creation.
> + */
> + public UpdateContainerOptions metadata(Map<String, String> metadata) {
> + if (!metadata.isEmpty()) {
See above comment
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/107/files#r13035191