
com.amazonaws.services.iot.model.ListOutgoingCertificatesResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-iot Show documentation
/*
* Copyright 2011-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.iot.model;
import java.io.Serializable;
/**
*
* The output from the ListOutgoingCertificates operation.
*
*/
public class ListOutgoingCertificatesResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The certificates that are being transfered but not yet accepted.
*
*/
private java.util.List outgoingCertificates;
/**
*
* The marker for the next set of results.
*
*/
private String nextMarker;
/**
*
* The certificates that are being transfered but not yet accepted.
*
*
* @return The certificates that are being transfered but not yet accepted.
*/
public java.util.List getOutgoingCertificates() {
return outgoingCertificates;
}
/**
*
* The certificates that are being transfered but not yet accepted.
*
*
* @param outgoingCertificates
* The certificates that are being transfered but not yet accepted.
*/
public void setOutgoingCertificates(java.util.Collection outgoingCertificates) {
if (outgoingCertificates == null) {
this.outgoingCertificates = null;
return;
}
this.outgoingCertificates = new java.util.ArrayList(outgoingCertificates);
}
/**
*
* The certificates that are being transfered but not yet accepted.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setOutgoingCertificates(java.util.Collection)} or {@link #withOutgoingCertificates(java.util.Collection)}
* if you want to override the existing values.
*
*
* @param outgoingCertificates
* The certificates that are being transfered but not yet accepted.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListOutgoingCertificatesResult withOutgoingCertificates(OutgoingCertificate... outgoingCertificates) {
if (this.outgoingCertificates == null) {
setOutgoingCertificates(new java.util.ArrayList(outgoingCertificates.length));
}
for (OutgoingCertificate ele : outgoingCertificates) {
this.outgoingCertificates.add(ele);
}
return this;
}
/**
*
* The certificates that are being transfered but not yet accepted.
*
*
* @param outgoingCertificates
* The certificates that are being transfered but not yet accepted.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListOutgoingCertificatesResult withOutgoingCertificates(java.util.Collection outgoingCertificates) {
setOutgoingCertificates(outgoingCertificates);
return this;
}
/**
*
* The marker for the next set of results.
*
*
* @param nextMarker
* The marker for the next set of results.
*/
public void setNextMarker(String nextMarker) {
this.nextMarker = nextMarker;
}
/**
*
* The marker for the next set of results.
*
*
* @return The marker for the next set of results.
*/
public String getNextMarker() {
return this.nextMarker;
}
/**
*
* The marker for the next set of results.
*
*
* @param nextMarker
* The marker for the next set of results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListOutgoingCertificatesResult withNextMarker(String nextMarker) {
setNextMarker(nextMarker);
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 (getOutgoingCertificates() != null)
sb.append("OutgoingCertificates: " + getOutgoingCertificates() + ",");
if (getNextMarker() != null)
sb.append("NextMarker: " + getNextMarker());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListOutgoingCertificatesResult == false)
return false;
ListOutgoingCertificatesResult other = (ListOutgoingCertificatesResult) obj;
if (other.getOutgoingCertificates() == null ^ this.getOutgoingCertificates() == null)
return false;
if (other.getOutgoingCertificates() != null && other.getOutgoingCertificates().equals(this.getOutgoingCertificates()) == false)
return false;
if (other.getNextMarker() == null ^ this.getNextMarker() == null)
return false;
if (other.getNextMarker() != null && other.getNextMarker().equals(this.getNextMarker()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getOutgoingCertificates() == null) ? 0 : getOutgoingCertificates().hashCode());
hashCode = prime * hashCode + ((getNextMarker() == null) ? 0 : getNextMarker().hashCode());
return hashCode;
}
@Override
public ListOutgoingCertificatesResult clone() {
try {
return (ListOutgoingCertificatesResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}