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

com.amazonaws.services.route53.model.ListReusableDelegationSetsResult Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Route53 module holds the client classes that are used for communicating with Amazon Route53 Service

There is a newer version: 1.11.98
Show newest version
/*
 * Copyright 2010-2016 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.route53.model;

import java.io.Serializable;

/**
 * 

* A complex type that contains the response for the request. *

*/ public class ListReusableDelegationSetsResult implements Serializable, Cloneable { /** *

* A complex type that contains information about the reusable delegation * sets associated with the current AWS account. *

*/ private com.amazonaws.internal.SdkInternalList delegationSets; /** *

* If the request returned more than one page of results, submit another * request and specify the value of NextMarker from the last * response in the marker parameter to get the next page of * results. *

*/ private String marker; /** *

* A flag indicating whether there are more reusable delegation sets to be * listed. If your results were truncated, you can make a follow-up request * for the next page of results by using the Marker element. *

*

* Valid Values: true | false *

*/ private Boolean isTruncated; /** *

* Indicates where to continue listing reusable delegation sets. If * IsTruncated is true, make another request to * ListReusableDelegationSets and include the value of the * NextMarker element in the Marker element of the * previous response to get the next page of results. *

*/ private String nextMarker; /** *

* The maximum number of reusable delegation sets to be included in the * response body. If the number of reusable delegation sets associated with * this AWS account exceeds MaxItems, the value of * IsTruncated in the response is true. To get the * next page of results, call ListReusableDelegationSets again * and specify the value of NextMarker from the previous * response in the Marker element of the request. *

*/ private String maxItems; /** *

* A complex type that contains information about the reusable delegation * sets associated with the current AWS account. *

* * @return A complex type that contains information about the reusable * delegation sets associated with the current AWS account. */ public java.util.List getDelegationSets() { if (delegationSets == null) { delegationSets = new com.amazonaws.internal.SdkInternalList(); } return delegationSets; } /** *

* A complex type that contains information about the reusable delegation * sets associated with the current AWS account. *

* * @param delegationSets * A complex type that contains information about the reusable * delegation sets associated with the current AWS account. */ public void setDelegationSets( java.util.Collection delegationSets) { if (delegationSets == null) { this.delegationSets = null; return; } this.delegationSets = new com.amazonaws.internal.SdkInternalList( delegationSets); } /** *

* A complex type that contains information about the reusable delegation * sets associated with the current AWS account. *

*

* NOTE: This method appends the values to the existing list (if * any). Use {@link #setDelegationSets(java.util.Collection)} or * {@link #withDelegationSets(java.util.Collection)} if you want to override * the existing values. *

* * @param delegationSets * A complex type that contains information about the reusable * delegation sets associated with the current AWS account. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListReusableDelegationSetsResult withDelegationSets( DelegationSet... delegationSets) { if (this.delegationSets == null) { setDelegationSets(new com.amazonaws.internal.SdkInternalList( delegationSets.length)); } for (DelegationSet ele : delegationSets) { this.delegationSets.add(ele); } return this; } /** *

* A complex type that contains information about the reusable delegation * sets associated with the current AWS account. *

* * @param delegationSets * A complex type that contains information about the reusable * delegation sets associated with the current AWS account. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListReusableDelegationSetsResult withDelegationSets( java.util.Collection delegationSets) { setDelegationSets(delegationSets); return this; } /** *

* If the request returned more than one page of results, submit another * request and specify the value of NextMarker from the last * response in the marker parameter to get the next page of * results. *

* * @param marker * If the request returned more than one page of results, submit * another request and specify the value of NextMarker * from the last response in the marker parameter to get * the next page of results. */ public void setMarker(String marker) { this.marker = marker; } /** *

* If the request returned more than one page of results, submit another * request and specify the value of NextMarker from the last * response in the marker parameter to get the next page of * results. *

* * @return If the request returned more than one page of results, submit * another request and specify the value of NextMarker * from the last response in the marker parameter to * get the next page of results. */ public String getMarker() { return this.marker; } /** *

* If the request returned more than one page of results, submit another * request and specify the value of NextMarker from the last * response in the marker parameter to get the next page of * results. *

* * @param marker * If the request returned more than one page of results, submit * another request and specify the value of NextMarker * from the last response in the marker parameter to get * the next page of results. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListReusableDelegationSetsResult withMarker(String marker) { setMarker(marker); return this; } /** *

* A flag indicating whether there are more reusable delegation sets to be * listed. If your results were truncated, you can make a follow-up request * for the next page of results by using the Marker element. *

*

* Valid Values: true | false *

* * @param isTruncated * A flag indicating whether there are more reusable delegation sets * to be listed. If your results were truncated, you can make a * follow-up request for the next page of results by using the * Marker element.

*

* Valid Values: true | false */ public void setIsTruncated(Boolean isTruncated) { this.isTruncated = isTruncated; } /** *

* A flag indicating whether there are more reusable delegation sets to be * listed. If your results were truncated, you can make a follow-up request * for the next page of results by using the Marker element. *

*

* Valid Values: true | false *

* * @return A flag indicating whether there are more reusable delegation sets * to be listed. If your results were truncated, you can make a * follow-up request for the next page of results by using the * Marker element.

*

* Valid Values: true | false */ public Boolean getIsTruncated() { return this.isTruncated; } /** *

* A flag indicating whether there are more reusable delegation sets to be * listed. If your results were truncated, you can make a follow-up request * for the next page of results by using the Marker element. *

*

* Valid Values: true | false *

* * @param isTruncated * A flag indicating whether there are more reusable delegation sets * to be listed. If your results were truncated, you can make a * follow-up request for the next page of results by using the * Marker element.

*

* Valid Values: true | false * @return Returns a reference to this object so that method calls can be * chained together. */ public ListReusableDelegationSetsResult withIsTruncated(Boolean isTruncated) { setIsTruncated(isTruncated); return this; } /** *

* A flag indicating whether there are more reusable delegation sets to be * listed. If your results were truncated, you can make a follow-up request * for the next page of results by using the Marker element. *

*

* Valid Values: true | false *

* * @return A flag indicating whether there are more reusable delegation sets * to be listed. If your results were truncated, you can make a * follow-up request for the next page of results by using the * Marker element.

*

* Valid Values: true | false */ public Boolean isTruncated() { return this.isTruncated; } /** *

* Indicates where to continue listing reusable delegation sets. If * IsTruncated is true, make another request to * ListReusableDelegationSets and include the value of the * NextMarker element in the Marker element of the * previous response to get the next page of results. *

* * @param nextMarker * Indicates where to continue listing reusable delegation sets. If * IsTruncated is true, make another * request to ListReusableDelegationSets and include the * value of the NextMarker element in the * Marker element of the previous response to get the * next page of results. */ public void setNextMarker(String nextMarker) { this.nextMarker = nextMarker; } /** *

* Indicates where to continue listing reusable delegation sets. If * IsTruncated is true, make another request to * ListReusableDelegationSets and include the value of the * NextMarker element in the Marker element of the * previous response to get the next page of results. *

* * @return Indicates where to continue listing reusable delegation sets. If * IsTruncated is true, make another * request to ListReusableDelegationSets and include * the value of the NextMarker element in the * Marker element of the previous response to get the * next page of results. */ public String getNextMarker() { return this.nextMarker; } /** *

* Indicates where to continue listing reusable delegation sets. If * IsTruncated is true, make another request to * ListReusableDelegationSets and include the value of the * NextMarker element in the Marker element of the * previous response to get the next page of results. *

* * @param nextMarker * Indicates where to continue listing reusable delegation sets. If * IsTruncated is true, make another * request to ListReusableDelegationSets and include the * value of the NextMarker element in the * Marker element of the previous response to get the * next page of results. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListReusableDelegationSetsResult withNextMarker(String nextMarker) { setNextMarker(nextMarker); return this; } /** *

* The maximum number of reusable delegation sets to be included in the * response body. If the number of reusable delegation sets associated with * this AWS account exceeds MaxItems, the value of * IsTruncated in the response is true. To get the * next page of results, call ListReusableDelegationSets again * and specify the value of NextMarker from the previous * response in the Marker element of the request. *

* * @param maxItems * The maximum number of reusable delegation sets to be included in * the response body. If the number of reusable delegation sets * associated with this AWS account exceeds MaxItems, * the value of IsTruncated in the response is * true. To get the next page of results, call * ListReusableDelegationSets again and specify the * value of NextMarker from the previous response in the * Marker element of the request. */ public void setMaxItems(String maxItems) { this.maxItems = maxItems; } /** *

* The maximum number of reusable delegation sets to be included in the * response body. If the number of reusable delegation sets associated with * this AWS account exceeds MaxItems, the value of * IsTruncated in the response is true. To get the * next page of results, call ListReusableDelegationSets again * and specify the value of NextMarker from the previous * response in the Marker element of the request. *

* * @return The maximum number of reusable delegation sets to be included in * the response body. If the number of reusable delegation sets * associated with this AWS account exceeds MaxItems, * the value of IsTruncated in the response is * true. To get the next page of results, call * ListReusableDelegationSets again and specify the * value of NextMarker from the previous response in * the Marker element of the request. */ public String getMaxItems() { return this.maxItems; } /** *

* The maximum number of reusable delegation sets to be included in the * response body. If the number of reusable delegation sets associated with * this AWS account exceeds MaxItems, the value of * IsTruncated in the response is true. To get the * next page of results, call ListReusableDelegationSets again * and specify the value of NextMarker from the previous * response in the Marker element of the request. *

* * @param maxItems * The maximum number of reusable delegation sets to be included in * the response body. If the number of reusable delegation sets * associated with this AWS account exceeds MaxItems, * the value of IsTruncated in the response is * true. To get the next page of results, call * ListReusableDelegationSets again and specify the * value of NextMarker from the previous response in the * Marker element of the request. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListReusableDelegationSetsResult withMaxItems(String maxItems) { setMaxItems(maxItems); 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 (getDelegationSets() != null) sb.append("DelegationSets: " + getDelegationSets() + ","); if (getMarker() != null) sb.append("Marker: " + getMarker() + ","); if (getIsTruncated() != null) sb.append("IsTruncated: " + getIsTruncated() + ","); if (getNextMarker() != null) sb.append("NextMarker: " + getNextMarker() + ","); if (getMaxItems() != null) sb.append("MaxItems: " + getMaxItems()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListReusableDelegationSetsResult == false) return false; ListReusableDelegationSetsResult other = (ListReusableDelegationSetsResult) obj; if (other.getDelegationSets() == null ^ this.getDelegationSets() == null) return false; if (other.getDelegationSets() != null && other.getDelegationSets().equals(this.getDelegationSets()) == false) return false; if (other.getMarker() == null ^ this.getMarker() == null) return false; if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false) return false; if (other.getIsTruncated() == null ^ this.getIsTruncated() == null) return false; if (other.getIsTruncated() != null && other.getIsTruncated().equals(this.getIsTruncated()) == false) return false; if (other.getNextMarker() == null ^ this.getNextMarker() == null) return false; if (other.getNextMarker() != null && other.getNextMarker().equals(this.getNextMarker()) == false) return false; if (other.getMaxItems() == null ^ this.getMaxItems() == null) return false; if (other.getMaxItems() != null && other.getMaxItems().equals(this.getMaxItems()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDelegationSets() == null) ? 0 : getDelegationSets() .hashCode()); hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode()); hashCode = prime * hashCode + ((getIsTruncated() == null) ? 0 : getIsTruncated().hashCode()); hashCode = prime * hashCode + ((getNextMarker() == null) ? 0 : getNextMarker().hashCode()); hashCode = prime * hashCode + ((getMaxItems() == null) ? 0 : getMaxItems().hashCode()); return hashCode; } @Override public ListReusableDelegationSetsResult clone() { try { return (ListReusableDelegationSetsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy