> +import java.util.Map;
> +
> +import static com.google.common.base.Preconditions.checkNotNull;
> +
> +/**
> + * A queue.
> + *
> + * @author Everett Toews
> + */
> +public class Queue {
> +
> + private final String name;
> + private final Map<String, String> metadata;
> +
> + protected Queue(String name, @Nullable Map<String, String> metadata) {
> + this.name = checkNotNull(name, "id required");
"name" or "name required"?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/56/files#r7881689