All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.simpledb.model.GetAttributesRequest Maven / Gradle / Ivy

Go to download

The Amazon Web Services SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

The newest version!
/*
 * 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.simpledb.model;

import java.io.Serializable;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * Container for the parameters to the {@link com.amazonaws.services.simpledb.AmazonSimpleDB#getAttributes(GetAttributesRequest) GetAttributes operation}.
 * 

* Returns all of the attributes associated with the specified item. * Optionally, the attributes returned can be limited to one or more * attributes by specifying an attribute name parameter. *

*

* If the item does not exist on the replica that was accessed for this * operation, an empty set is returned. The system does not return an * error as it cannot guarantee the item does not exist on other * replicas. *

*

* NOTE: If GetAttributes is called without being passed any * attribute names, all the attributes for the item are returned. *

* * @see com.amazonaws.services.simpledb.AmazonSimpleDB#getAttributes(GetAttributesRequest) */ public class GetAttributesRequest extends AmazonWebServiceRequest implements Serializable { /** * The name of the domain in which to perform the operation. */ private String domainName; /** * The name of the item. */ private String itemName; /** * The names of the attributes. */ private com.amazonaws.internal.ListWithAutoConstructFlag attributeNames; /** * Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. */ private Boolean consistentRead; /** * Default constructor for a new GetAttributesRequest object. Callers should use the * setter or fluent setter (with...) methods to initialize this object after creating it. */ public GetAttributesRequest() {} /** * Constructs a new GetAttributesRequest object. * Callers should use the setter or fluent setter (with...) methods to * initialize any additional object members. * * @param domainName The name of the domain in which to perform the * operation. * @param itemName The name of the item. */ public GetAttributesRequest(String domainName, String itemName) { setDomainName(domainName); setItemName(itemName); } /** * The name of the domain in which to perform the operation. * * @return The name of the domain in which to perform the operation. */ public String getDomainName() { return domainName; } /** * The name of the domain in which to perform the operation. * * @param domainName The name of the domain in which to perform the operation. */ public void setDomainName(String domainName) { this.domainName = domainName; } /** * The name of the domain in which to perform the operation. *

* Returns a reference to this object so that method calls can be chained together. * * @param domainName The name of the domain in which to perform the operation. * * @return A reference to this updated object so that method calls can be chained * together. */ public GetAttributesRequest withDomainName(String domainName) { this.domainName = domainName; return this; } /** * The name of the item. * * @return The name of the item. */ public String getItemName() { return itemName; } /** * The name of the item. * * @param itemName The name of the item. */ public void setItemName(String itemName) { this.itemName = itemName; } /** * The name of the item. *

* Returns a reference to this object so that method calls can be chained together. * * @param itemName The name of the item. * * @return A reference to this updated object so that method calls can be chained * together. */ public GetAttributesRequest withItemName(String itemName) { this.itemName = itemName; return this; } /** * The names of the attributes. * * @return The names of the attributes. */ public java.util.List getAttributeNames() { if (attributeNames == null) { attributeNames = new com.amazonaws.internal.ListWithAutoConstructFlag(); attributeNames.setAutoConstruct(true); } return attributeNames; } /** * The names of the attributes. * * @param attributeNames The names of the attributes. */ public void setAttributeNames(java.util.Collection attributeNames) { if (attributeNames == null) { this.attributeNames = null; return; } com.amazonaws.internal.ListWithAutoConstructFlag attributeNamesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(attributeNames.size()); attributeNamesCopy.addAll(attributeNames); this.attributeNames = attributeNamesCopy; } /** * The names of the attributes. *

* Returns a reference to this object so that method calls can be chained together. * * @param attributeNames The names of the attributes. * * @return A reference to this updated object so that method calls can be chained * together. */ public GetAttributesRequest withAttributeNames(String... attributeNames) { if (getAttributeNames() == null) setAttributeNames(new java.util.ArrayList(attributeNames.length)); for (String value : attributeNames) { getAttributeNames().add(value); } return this; } /** * The names of the attributes. *

* Returns a reference to this object so that method calls can be chained together. * * @param attributeNames The names of the attributes. * * @return A reference to this updated object so that method calls can be chained * together. */ public GetAttributesRequest withAttributeNames(java.util.Collection attributeNames) { if (attributeNames == null) { this.attributeNames = null; } else { com.amazonaws.internal.ListWithAutoConstructFlag attributeNamesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(attributeNames.size()); attributeNamesCopy.addAll(attributeNames); this.attributeNames = attributeNamesCopy; } return this; } /** * Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. * * @return Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. */ public Boolean isConsistentRead() { return consistentRead; } /** * Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. * * @param consistentRead Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. */ public void setConsistentRead(Boolean consistentRead) { this.consistentRead = consistentRead; } /** * Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. *

* Returns a reference to this object so that method calls can be chained together. * * @param consistentRead Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. * * @return A reference to this updated object so that method calls can be chained * together. */ public GetAttributesRequest withConsistentRead(Boolean consistentRead) { this.consistentRead = consistentRead; return this; } /** * Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. * * @return Determines whether or not strong consistency should be enforced when * data is read from SimpleDB. If true, any data previously * written to SimpleDB will be returned. Otherwise, results will be * consistent eventually, and the client may not see data that was * written immediately before your read. */ public Boolean getConsistentRead() { return consistentRead; } /** * 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 (getDomainName() != null) sb.append("DomainName: " + getDomainName() + ","); if (getItemName() != null) sb.append("ItemName: " + getItemName() + ","); if (getAttributeNames() != null) sb.append("AttributeNames: " + getAttributeNames() + ","); if (isConsistentRead() != null) sb.append("ConsistentRead: " + isConsistentRead() ); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDomainName() == null) ? 0 : getDomainName().hashCode()); hashCode = prime * hashCode + ((getItemName() == null) ? 0 : getItemName().hashCode()); hashCode = prime * hashCode + ((getAttributeNames() == null) ? 0 : getAttributeNames().hashCode()); hashCode = prime * hashCode + ((isConsistentRead() == null) ? 0 : isConsistentRead().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetAttributesRequest == false) return false; GetAttributesRequest other = (GetAttributesRequest)obj; if (other.getDomainName() == null ^ this.getDomainName() == null) return false; if (other.getDomainName() != null && other.getDomainName().equals(this.getDomainName()) == false) return false; if (other.getItemName() == null ^ this.getItemName() == null) return false; if (other.getItemName() != null && other.getItemName().equals(this.getItemName()) == false) return false; if (other.getAttributeNames() == null ^ this.getAttributeNames() == null) return false; if (other.getAttributeNames() != null && other.getAttributeNames().equals(this.getAttributeNames()) == false) return false; if (other.isConsistentRead() == null ^ this.isConsistentRead() == null) return false; if (other.isConsistentRead() != null && other.isConsistentRead().equals(this.isConsistentRead()) == false) return false; return true; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy