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