blob: 9933a1cf154b42e7e776536a00c3f18095737b3f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jclouds.openstack.swift.v1.domain;
import static com.google.common.base.Objects.equal;
import static com.google.common.base.Objects.toStringHelper;
import static com.google.common.base.Preconditions.checkNotNull;
import java.util.Map;
import com.google.common.base.Objects;
import com.google.common.base.Objects.ToStringHelper;
/**
* Represents a response from a Bulk Delete request.
*
* @see org.jclouds.openstack.swift.v1.features.BulkApi
*/
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");
}
/**
* @return The number of files deleted.
* */
public int getDeleted() {
return deleted;
}
/**
* @return The number of files not found.
*/
public int getNotFound() {
return notFound;
}
/**
* @return a {@code Map<String, String>} containing each path that failed
* to be deleted and its corresponding error response.
*/
public Map<String, String> getErrors() {
return errors;
}
@Override
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (object instanceof BulkDeleteResponse) {
BulkDeleteResponse that = BulkDeleteResponse.class.cast(object);
return equal(getDeleted(), that.getDeleted())
&& equal(getNotFound(), that.getNotFound())
&& equal(getErrors(), that.getErrors());
} else {
return false;
}
}
@Override
public int hashCode() {
return Objects.hashCode(getDeleted(), getNotFound(), getErrors());
}
protected ToStringHelper string() {
return toStringHelper(this)
.add("deleted", getDeleted())
.add("notFound", getNotFound())
.add("errors", getErrors());
}
@Override
public String toString() {
return string().toString();
}
}