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

com.amazonaws.services.inspector.model.PreviewAgentsResult Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.11.8
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.inspector.model;

import java.io.Serializable;

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

    /**
     * 

* The resulting list of agents. *

*/ private java.util.List agentPreviews; /** *

* When a response is generated, if there is more data to be listed, this * parameter is present in the response and contains the value to use for * the nextToken parameter in a subsequent pagination request. If * there is no more data to be listed, this parameter is set to null. *

*/ private String nextToken; /** *

* The resulting list of agents. *

* * @return The resulting list of agents. */ public java.util.List getAgentPreviews() { return agentPreviews; } /** *

* The resulting list of agents. *

* * @param agentPreviews * The resulting list of agents. */ public void setAgentPreviews( java.util.Collection agentPreviews) { if (agentPreviews == null) { this.agentPreviews = null; return; } this.agentPreviews = new java.util.ArrayList( agentPreviews); } /** *

* The resulting list of agents. *

*

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

* * @param agentPreviews * The resulting list of agents. * @return Returns a reference to this object so that method calls can be * chained together. */ public PreviewAgentsResult withAgentPreviews(AgentPreview... agentPreviews) { if (this.agentPreviews == null) { setAgentPreviews(new java.util.ArrayList( agentPreviews.length)); } for (AgentPreview ele : agentPreviews) { this.agentPreviews.add(ele); } return this; } /** *

* The resulting list of agents. *

* * @param agentPreviews * The resulting list of agents. * @return Returns a reference to this object so that method calls can be * chained together. */ public PreviewAgentsResult withAgentPreviews( java.util.Collection agentPreviews) { setAgentPreviews(agentPreviews); return this; } /** *

* When a response is generated, if there is more data to be listed, this * parameter is present in the response and contains the value to use for * the nextToken parameter in a subsequent pagination request. If * there is no more data to be listed, this parameter is set to null. *

* * @param nextToken * When a response is generated, if there is more data to be listed, * this parameter is present in the response and contains the value * to use for the nextToken parameter in a subsequent * pagination request. If there is no more data to be listed, this * parameter is set to null. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

* When a response is generated, if there is more data to be listed, this * parameter is present in the response and contains the value to use for * the nextToken parameter in a subsequent pagination request. If * there is no more data to be listed, this parameter is set to null. *

* * @return When a response is generated, if there is more data to be listed, * this parameter is present in the response and contains the value * to use for the nextToken parameter in a subsequent * pagination request. If there is no more data to be listed, this * parameter is set to null. */ public String getNextToken() { return this.nextToken; } /** *

* When a response is generated, if there is more data to be listed, this * parameter is present in the response and contains the value to use for * the nextToken parameter in a subsequent pagination request. If * there is no more data to be listed, this parameter is set to null. *

* * @param nextToken * When a response is generated, if there is more data to be listed, * this parameter is present in the response and contains the value * to use for the nextToken parameter in a subsequent * pagination request. If there is no more data to be listed, this * parameter is set to null. * @return Returns a reference to this object so that method calls can be * chained together. */ public PreviewAgentsResult withNextToken(String nextToken) { setNextToken(nextToken); 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 (getAgentPreviews() != null) sb.append("AgentPreviews: " + getAgentPreviews() + ","); if (getNextToken() != null) sb.append("NextToken: " + getNextToken()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PreviewAgentsResult == false) return false; PreviewAgentsResult other = (PreviewAgentsResult) obj; if (other.getAgentPreviews() == null ^ this.getAgentPreviews() == null) return false; if (other.getAgentPreviews() != null && other.getAgentPreviews().equals(this.getAgentPreviews()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAgentPreviews() == null) ? 0 : getAgentPreviews() .hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); return hashCode; } @Override public PreviewAgentsResult clone() { try { return (PreviewAgentsResult) 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