com.amazonaws.services.dynamodb.model.BatchGetItemResult 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;
/**
* Batch Get Item Result
* @deprecated Use {@link com.amazonaws.services.dynamodbv2.model.BatchGetItemResult} instead.
*/
@Deprecated
public class BatchGetItemResult implements Serializable {
/**
* Table names and the respective item attributes from the tables.
*/
private java.util.Map responses;
/**
* Contains a map of tables and their respective keys that were not
* processed with the current response, possibly due to reaching a limit
* on the response size. The UnprocessedKeys
value is in the
* same form as a RequestItems
parameter (so the value can
* be provided directly to a subsequent BatchGetItem
* operation). For more information, see the above
* RequestItems
parameter.
*
* Constraints:
* Length: 1 - 100
*/
private java.util.Map unprocessedKeys;
/**
* Table names and the respective item attributes from the tables.
*
* @return Table names and the respective item attributes from the tables.
*/
public java.util.Map getResponses() {
return responses;
}
/**
* Table names and the respective item attributes from the tables.
*
* @param responses Table names and the respective item attributes from the tables.
*/
public void setResponses(java.util.Map responses) {
this.responses = responses;
}
/**
* Table names and the respective item attributes from the tables.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param responses Table names and the respective item attributes from the tables.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BatchGetItemResult withResponses(java.util.Map responses) {
setResponses(responses);
return this;
}
/**
* Contains a map of tables and their respective keys that were not
* processed with the current response, possibly due to reaching a limit
* on the response size. The UnprocessedKeys
value is in the
* same form as a RequestItems
parameter (so the value can
* be provided directly to a subsequent BatchGetItem
* operation). For more information, see the above
* RequestItems
parameter.
*
* Constraints:
* Length: 1 - 100
*
* @return Contains a map of tables and their respective keys that were not
* processed with the current response, possibly due to reaching a limit
* on the response size. The UnprocessedKeys
value is in the
* same form as a RequestItems
parameter (so the value can
* be provided directly to a subsequent BatchGetItem
* operation). For more information, see the above
* RequestItems
parameter.
*/
public java.util.Map getUnprocessedKeys() {
return unprocessedKeys;
}
/**
* Contains a map of tables and their respective keys that were not
* processed with the current response, possibly due to reaching a limit
* on the response size. The UnprocessedKeys
value is in the
* same form as a RequestItems
parameter (so the value can
* be provided directly to a subsequent BatchGetItem
* operation). For more information, see the above
* RequestItems
parameter.
*
* Constraints:
* Length: 1 - 100
*
* @param unprocessedKeys Contains a map of tables and their respective keys that were not
* processed with the current response, possibly due to reaching a limit
* on the response size. The UnprocessedKeys
value is in the
* same form as a RequestItems
parameter (so the value can
* be provided directly to a subsequent BatchGetItem
* operation). For more information, see the above
* RequestItems
parameter.
*/
public void setUnprocessedKeys(java.util.Map unprocessedKeys) {
this.unprocessedKeys = unprocessedKeys;
}
/**
* Contains a map of tables and their respective keys that were not
* processed with the current response, possibly due to reaching a limit
* on the response size. The UnprocessedKeys
value is in the
* same form as a RequestItems
parameter (so the value can
* be provided directly to a subsequent BatchGetItem
* operation). For more information, see the above
* RequestItems
parameter.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 100
*
* @param unprocessedKeys Contains a map of tables and their respective keys that were not
* processed with the current response, possibly due to reaching a limit
* on the response size. The UnprocessedKeys
value is in the
* same form as a RequestItems
parameter (so the value can
* be provided directly to a subsequent BatchGetItem
* operation). For more information, see the above
* RequestItems
parameter.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public BatchGetItemResult withUnprocessedKeys(java.util.Map unprocessedKeys) {
setUnprocessedKeys(unprocessedKeys);
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 (getUnprocessedKeys() != null) sb.append("UnprocessedKeys: " + getUnprocessedKeys() + ", ");
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 + ((getUnprocessedKeys() == null) ? 0 : getUnprocessedKeys().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null) return false;
if (obj instanceof BatchGetItemResult == false) return false;
BatchGetItemResult other = (BatchGetItemResult)obj;
if (other.getResponses() == null ^ this.getResponses() == null) return false;
if (other.getResponses() != null && other.getResponses().equals(this.getResponses()) == false) return false;
if (other.getUnprocessedKeys() == null ^ this.getUnprocessedKeys() == null) return false;
if (other.getUnprocessedKeys() != null && other.getUnprocessedKeys().equals(this.getUnprocessedKeys()) == false) return false;
return true;
}
}