> +/** > + * @see <a > + * > href="http://docs.openstack.org/developer/swift/misc.html#module-swift.common.middleware.bulk"> > + * Swift Bulk Middleware</a> > + */ > +public class ExtractArchiveResponse { > + public static ExtractArchiveResponse create(int created, Map<String, > String> errors) { > + return new ExtractArchiveResponse(created, errors); > + } > + > + private final int created; > + private final Map<String, String> errors; > + > + private ExtractArchiveResponse(int created, Map<String, String> errors) { > + this.created = created; > + this.errors = checkNotNull(errors, "errors");
See comment above --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/30/files#r7235132
