com.amazonaws.services.licensemanagerlinuxsubscriptions.model.ListLinuxSubscriptionsResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-licensemanagerlinuxsubscriptions Show documentation
/*
* Copyright 2019-2024 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.licensemanagerlinuxsubscriptions.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListLinuxSubscriptionsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the
* service hasn't included in this request. Use this token with the next request to retrieve additional objects.
*
*/
private String nextToken;
/**
*
* An array that contains subscription objects.
*
*/
private java.util.List subscriptions;
/**
*
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the
* service hasn't included in this request. Use this token with the next request to retrieve additional objects.
*
*
* @param nextToken
* The next token used for paginated responses. When this field isn't empty, there are additional elements
* that the service hasn't included in this request. Use this token with the next request to retrieve
* additional objects.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the
* service hasn't included in this request. Use this token with the next request to retrieve additional objects.
*
*
* @return The next token used for paginated responses. When this field isn't empty, there are additional elements
* that the service hasn't included in this request. Use this token with the next request to retrieve
* additional objects.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* The next token used for paginated responses. When this field isn't empty, there are additional elements that the
* service hasn't included in this request. Use this token with the next request to retrieve additional objects.
*
*
* @param nextToken
* The next token used for paginated responses. When this field isn't empty, there are additional elements
* that the service hasn't included in this request. Use this token with the next request to retrieve
* additional objects.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListLinuxSubscriptionsResult withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
*
* An array that contains subscription objects.
*
*
* @return An array that contains subscription objects.
*/
public java.util.List getSubscriptions() {
return subscriptions;
}
/**
*
* An array that contains subscription objects.
*
*
* @param subscriptions
* An array that contains subscription objects.
*/
public void setSubscriptions(java.util.Collection subscriptions) {
if (subscriptions == null) {
this.subscriptions = null;
return;
}
this.subscriptions = new java.util.ArrayList(subscriptions);
}
/**
*
* An array that contains subscription objects.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setSubscriptions(java.util.Collection)} or {@link #withSubscriptions(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param subscriptions
* An array that contains subscription objects.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListLinuxSubscriptionsResult withSubscriptions(Subscription... subscriptions) {
if (this.subscriptions == null) {
setSubscriptions(new java.util.ArrayList(subscriptions.length));
}
for (Subscription ele : subscriptions) {
this.subscriptions.add(ele);
}
return this;
}
/**
*
* An array that contains subscription objects.
*
*
* @param subscriptions
* An array that contains subscription objects.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListLinuxSubscriptionsResult withSubscriptions(java.util.Collection subscriptions) {
setSubscriptions(subscriptions);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken()).append(",");
if (getSubscriptions() != null)
sb.append("Subscriptions: ").append(getSubscriptions());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListLinuxSubscriptionsResult == false)
return false;
ListLinuxSubscriptionsResult other = (ListLinuxSubscriptionsResult) obj;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
if (other.getSubscriptions() == null ^ this.getSubscriptions() == null)
return false;
if (other.getSubscriptions() != null && other.getSubscriptions().equals(this.getSubscriptions()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
hashCode = prime * hashCode + ((getSubscriptions() == null) ? 0 : getSubscriptions().hashCode());
return hashCode;
}
@Override
public ListLinuxSubscriptionsResult clone() {
try {
return (ListLinuxSubscriptionsResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}