com.amazonaws.services.dynamodb.model.BatchWriteItemResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk Show documentation
/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 com.amazonaws.services.dynamodb.model;
import java.io.Serializable;
/**
*
* A container for BatchWriteItem
response
*
* @deprecated Use {@link com.amazonaws.services.dynamodbv2.model.BatchWriteItemResult} instead.
*/
@Deprecated
public class BatchWriteItemResult implements Serializable {
/**
* The response object as a result of BatchWriteItem
call.
* This is essentially a map of table name to
* ConsumedCapacityUnits
.
*/
private java.util.Map responses;
/**
* The Items which we could not successfully process in a
* BatchWriteItem
call is returned as
* UnprocessedItems
*
* Constraints:
* Length: 1 - 25
*/
private java.util.Map> unprocessedItems;
/**
* The response object as a result of BatchWriteItem
call.
* This is essentially a map of table name to
* ConsumedCapacityUnits
.
*
* @return The response object as a result of BatchWriteItem
call.
* This is essentially a map of table name to
* ConsumedCapacityUnits
.
*/
public java.util.Map getResponses() {
return responses;
}
/**
* The response object as a result of BatchWriteItem
call.
* This is essentially a map of table name to
* ConsumedCapacityUnits
.
*
* @param responses The response object as a result of BatchWriteItem
call.
* This is essentially a map of table name to
* ConsumedCapacityUnits
.
*/
public void setResponses(java.util.Map responses) {
this.responses = responses;
}
/**
* The response object as a result of BatchWriteItem
call.
* This is essentially a map of table name to
* ConsumedCapacityUnits
.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param responses The response object as a result of BatchWriteItem
call.
* This is essentially a map of table name to
* ConsumedCapacityUnits
.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BatchWriteItemResult withResponses(java.util.Map responses) {
setResponses(responses);
return this;
}
/**
* The Items which we could not successfully process in a
* BatchWriteItem
call is returned as
* UnprocessedItems
*
* Constraints:
* Length: 1 - 25
*
* @return The Items which we could not successfully process in a
* BatchWriteItem
call is returned as
* UnprocessedItems
*/
public java.util.Map> getUnprocessedItems() {
return unprocessedItems;
}
/**
* The Items which we could not successfully process in a
* BatchWriteItem
call is returned as
* UnprocessedItems
*
* Constraints:
* Length: 1 - 25
*
* @param unprocessedItems The Items which we could not successfully process in a
* BatchWriteItem
call is returned as
* UnprocessedItems
*/
public void setUnprocessedItems(java.util.Map> unprocessedItems) {
this.unprocessedItems = unprocessedItems;
}
/**
* The Items which we could not successfully process in a
* BatchWriteItem
call is returned as
* UnprocessedItems
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 25
*
* @param unprocessedItems The Items which we could not successfully process in a
* BatchWriteItem
call is returned as
* UnprocessedItems
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BatchWriteItemResult withUnprocessedItems(java.util.Map> unprocessedItems) {
setUnprocessedItems(unprocessedItems);
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getResponses() != null) sb.append("Responses: " + getResponses() + ", ");
if (getUnprocessedItems() != null) sb.append("UnprocessedItems: " + getUnprocessedItems() + ", ");
sb.append("}");
return sb.toString();
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getResponses() == null) ? 0 : getResponses().hashCode());
hashCode = prime * hashCode + ((getUnprocessedItems() == null) ? 0 : getUnprocessedItems().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof BatchWriteItemResult == false) return false;
BatchWriteItemResult other = (BatchWriteItemResult)obj;
if (other.getResponses() == null ^ this.getResponses() == null) return false;
if (other.getResponses() != null && other.getResponses().equals(this.getResponses()) == false) return false;
if (other.getUnprocessedItems() == null ^ this.getUnprocessedItems() == null) return false;
if (other.getUnprocessedItems() != null && other.getUnprocessedItems().equals(this.getUnprocessedItems()) == false) return false;
return true;
}
}