> + protected Payload payload;
> + protected Map<String, String> metadata = ImmutableMap.of();
> +
> + /**
> + * @see SwiftObject#name()
> + */
> + public Builder name(String name) {
> + this.name = checkNotNull(name, "name");
> + return this;
> + }
> +
> + /**
> + * @see SwiftObject#hash()
> + */
> + public Builder hash(String hash) {
> + this.hash = hash;
Does this need a `checkNotNull`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/27/files#r7235105