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

com.amazonaws.services.elasticbeanstalk.model.ApplicationVersionDescription Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * 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.elasticbeanstalk.model;

import java.io.Serializable;

/**
 * 

* Describes the properties of an application version. *

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

* The name of the application associated with this release. *

*/ private String applicationName; /** *

* The description of this application version. *

*/ private String description; /** *

* A label uniquely identifying the version for the associated application. *

*/ private String versionLabel; /** *

* The location where the source bundle is located for this version. *

*/ private S3Location sourceBundle; /** *

* The creation date of the application version. *

*/ private java.util.Date dateCreated; /** *

* The last modified date of the application version. *

*/ private java.util.Date dateUpdated; /** *

* The processing status of the application version. *

*/ private String status; /** *

* The name of the application associated with this release. *

* * @param applicationName * The name of the application associated with this release. */ public void setApplicationName(String applicationName) { this.applicationName = applicationName; } /** *

* The name of the application associated with this release. *

* * @return The name of the application associated with this release. */ public String getApplicationName() { return this.applicationName; } /** *

* The name of the application associated with this release. *

* * @param applicationName * The name of the application associated with this release. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApplicationVersionDescription withApplicationName( String applicationName) { setApplicationName(applicationName); return this; } /** *

* The description of this application version. *

* * @param description * The description of this application version. */ public void setDescription(String description) { this.description = description; } /** *

* The description of this application version. *

* * @return The description of this application version. */ public String getDescription() { return this.description; } /** *

* The description of this application version. *

* * @param description * The description of this application version. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApplicationVersionDescription withDescription(String description) { setDescription(description); return this; } /** *

* A label uniquely identifying the version for the associated application. *

* * @param versionLabel * A label uniquely identifying the version for the associated * application. */ public void setVersionLabel(String versionLabel) { this.versionLabel = versionLabel; } /** *

* A label uniquely identifying the version for the associated application. *

* * @return A label uniquely identifying the version for the associated * application. */ public String getVersionLabel() { return this.versionLabel; } /** *

* A label uniquely identifying the version for the associated application. *

* * @param versionLabel * A label uniquely identifying the version for the associated * application. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApplicationVersionDescription withVersionLabel(String versionLabel) { setVersionLabel(versionLabel); return this; } /** *

* The location where the source bundle is located for this version. *

* * @param sourceBundle * The location where the source bundle is located for this version. */ public void setSourceBundle(S3Location sourceBundle) { this.sourceBundle = sourceBundle; } /** *

* The location where the source bundle is located for this version. *

* * @return The location where the source bundle is located for this version. */ public S3Location getSourceBundle() { return this.sourceBundle; } /** *

* The location where the source bundle is located for this version. *

* * @param sourceBundle * The location where the source bundle is located for this version. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApplicationVersionDescription withSourceBundle( S3Location sourceBundle) { setSourceBundle(sourceBundle); return this; } /** *

* The creation date of the application version. *

* * @param dateCreated * The creation date of the application version. */ public void setDateCreated(java.util.Date dateCreated) { this.dateCreated = dateCreated; } /** *

* The creation date of the application version. *

* * @return The creation date of the application version. */ public java.util.Date getDateCreated() { return this.dateCreated; } /** *

* The creation date of the application version. *

* * @param dateCreated * The creation date of the application version. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApplicationVersionDescription withDateCreated( java.util.Date dateCreated) { setDateCreated(dateCreated); return this; } /** *

* The last modified date of the application version. *

* * @param dateUpdated * The last modified date of the application version. */ public void setDateUpdated(java.util.Date dateUpdated) { this.dateUpdated = dateUpdated; } /** *

* The last modified date of the application version. *

* * @return The last modified date of the application version. */ public java.util.Date getDateUpdated() { return this.dateUpdated; } /** *

* The last modified date of the application version. *

* * @param dateUpdated * The last modified date of the application version. * @return Returns a reference to this object so that method calls can be * chained together. */ public ApplicationVersionDescription withDateUpdated( java.util.Date dateUpdated) { setDateUpdated(dateUpdated); return this; } /** *

* The processing status of the application version. *

* * @param status * The processing status of the application version. * @see ApplicationVersionStatus */ public void setStatus(String status) { this.status = status; } /** *

* The processing status of the application version. *

* * @return The processing status of the application version. * @see ApplicationVersionStatus */ public String getStatus() { return this.status; } /** *

* The processing status of the application version. *

* * @param status * The processing status of the application version. * @return Returns a reference to this object so that method calls can be * chained together. * @see ApplicationVersionStatus */ public ApplicationVersionDescription withStatus(String status) { setStatus(status); return this; } /** *

* The processing status of the application version. *

* * @param status * The processing status of the application version. * @see ApplicationVersionStatus */ public void setStatus(ApplicationVersionStatus status) { this.status = status.toString(); } /** *

* The processing status of the application version. *

* * @param status * The processing status of the application version. * @return Returns a reference to this object so that method calls can be * chained together. * @see ApplicationVersionStatus */ public ApplicationVersionDescription withStatus( ApplicationVersionStatus status) { setStatus(status); 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: " + getApplicationName() + ","); if (getDescription() != null) sb.append("Description: " + getDescription() + ","); if (getVersionLabel() != null) sb.append("VersionLabel: " + getVersionLabel() + ","); if (getSourceBundle() != null) sb.append("SourceBundle: " + getSourceBundle() + ","); if (getDateCreated() != null) sb.append("DateCreated: " + getDateCreated() + ","); if (getDateUpdated() != null) sb.append("DateUpdated: " + getDateUpdated() + ","); if (getStatus() != null) sb.append("Status: " + getStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ApplicationVersionDescription == false) return false; ApplicationVersionDescription other = (ApplicationVersionDescription) obj; if (other.getApplicationName() == null ^ this.getApplicationName() == null) return false; if (other.getApplicationName() != null && other.getApplicationName().equals(this.getApplicationName()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getVersionLabel() == null ^ this.getVersionLabel() == null) return false; if (other.getVersionLabel() != null && other.getVersionLabel().equals(this.getVersionLabel()) == false) return false; if (other.getSourceBundle() == null ^ this.getSourceBundle() == null) return false; if (other.getSourceBundle() != null && other.getSourceBundle().equals(this.getSourceBundle()) == false) return false; if (other.getDateCreated() == null ^ this.getDateCreated() == null) return false; if (other.getDateCreated() != null && other.getDateCreated().equals(this.getDateCreated()) == false) return false; if (other.getDateUpdated() == null ^ this.getDateUpdated() == null) return false; if (other.getDateUpdated() != null && other.getDateUpdated().equals(this.getDateUpdated()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == 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 + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getVersionLabel() == null) ? 0 : getVersionLabel() .hashCode()); hashCode = prime * hashCode + ((getSourceBundle() == null) ? 0 : getSourceBundle() .hashCode()); hashCode = prime * hashCode + ((getDateCreated() == null) ? 0 : getDateCreated().hashCode()); hashCode = prime * hashCode + ((getDateUpdated() == null) ? 0 : getDateUpdated().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); return hashCode; } @Override public ApplicationVersionDescription clone() { try { return (ApplicationVersionDescription) 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