com.amazonaws.services.codedeploy.model.BatchGetApplicationRevisionsResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-codedeploy Show documentation
/*
* Copyright 2012-2017 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.codedeploy.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Represents the output of a BatchGetApplicationRevisions operation.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class BatchGetApplicationRevisionsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The name of the application that corresponds to the revisions.
*
*/
private String applicationName;
/**
*
* Information about errors that may have occurred during the API call.
*
*/
private String errorMessage;
/**
*
* Additional information about the revisions, including the type and location.
*
*/
private com.amazonaws.internal.SdkInternalList revisions;
/**
*
* The name of the application that corresponds to the revisions.
*
*
* @param applicationName
* The name of the application that corresponds to the revisions.
*/
public void setApplicationName(String applicationName) {
this.applicationName = applicationName;
}
/**
*
* The name of the application that corresponds to the revisions.
*
*
* @return The name of the application that corresponds to the revisions.
*/
public String getApplicationName() {
return this.applicationName;
}
/**
*
* The name of the application that corresponds to the revisions.
*
*
* @param applicationName
* The name of the application that corresponds to the revisions.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetApplicationRevisionsResult withApplicationName(String applicationName) {
setApplicationName(applicationName);
return this;
}
/**
*
* Information about errors that may have occurred during the API call.
*
*
* @param errorMessage
* Information about errors that may have occurred during the API call.
*/
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
/**
*
* Information about errors that may have occurred during the API call.
*
*
* @return Information about errors that may have occurred during the API call.
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
*
* Information about errors that may have occurred during the API call.
*
*
* @param errorMessage
* Information about errors that may have occurred during the API call.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetApplicationRevisionsResult withErrorMessage(String errorMessage) {
setErrorMessage(errorMessage);
return this;
}
/**
*
* Additional information about the revisions, including the type and location.
*
*
* @return Additional information about the revisions, including the type and location.
*/
public java.util.List getRevisions() {
if (revisions == null) {
revisions = new com.amazonaws.internal.SdkInternalList();
}
return revisions;
}
/**
*
* Additional information about the revisions, including the type and location.
*
*
* @param revisions
* Additional information about the revisions, including the type and location.
*/
public void setRevisions(java.util.Collection revisions) {
if (revisions == null) {
this.revisions = null;
return;
}
this.revisions = new com.amazonaws.internal.SdkInternalList(revisions);
}
/**
*
* Additional information about the revisions, including the type and location.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setRevisions(java.util.Collection)} or {@link #withRevisions(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param revisions
* Additional information about the revisions, including the type and location.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetApplicationRevisionsResult withRevisions(RevisionInfo... revisions) {
if (this.revisions == null) {
setRevisions(new com.amazonaws.internal.SdkInternalList(revisions.length));
}
for (RevisionInfo ele : revisions) {
this.revisions.add(ele);
}
return this;
}
/**
*
* Additional information about the revisions, including the type and location.
*
*
* @param revisions
* Additional information about the revisions, including the type and location.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetApplicationRevisionsResult withRevisions(java.util.Collection revisions) {
setRevisions(revisions);
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 (getApplicationName() != null)
sb.append("ApplicationName: ").append(getApplicationName()).append(",");
if (getErrorMessage() != null)
sb.append("ErrorMessage: ").append(getErrorMessage()).append(",");
if (getRevisions() != null)
sb.append("Revisions: ").append(getRevisions());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof BatchGetApplicationRevisionsResult == false)
return false;
BatchGetApplicationRevisionsResult other = (BatchGetApplicationRevisionsResult) obj;
if (other.getApplicationName() == null ^ this.getApplicationName() == null)
return false;
if (other.getApplicationName() != null && other.getApplicationName().equals(this.getApplicationName()) == false)
return false;
if (other.getErrorMessage() == null ^ this.getErrorMessage() == null)
return false;
if (other.getErrorMessage() != null && other.getErrorMessage().equals(this.getErrorMessage()) == false)
return false;
if (other.getRevisions() == null ^ this.getRevisions() == null)
return false;
if (other.getRevisions() != null && other.getRevisions().equals(this.getRevisions()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getApplicationName() == null) ? 0 : getApplicationName().hashCode());
hashCode = prime * hashCode + ((getErrorMessage() == null) ? 0 : getErrorMessage().hashCode());
hashCode = prime * hashCode + ((getRevisions() == null) ? 0 : getRevisions().hashCode());
return hashCode;
}
@Override
public BatchGetApplicationRevisionsResult clone() {
try {
return (BatchGetApplicationRevisionsResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}