Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.elasticbeanstalk.model
Class ApplicationDescription

java.lang.Object
  extended by com.amazonaws.services.elasticbeanstalk.model.ApplicationDescription
All Implemented Interfaces:
Serializable

public class ApplicationDescription
extends Object
implements Serializable

Describes the properties of an application.

See Also:
Serialized Form

Constructor Summary
ApplicationDescription()
          Default constructor for a new ApplicationDescription object.
 
Method Summary
 boolean equals(Object obj)
           
 String getApplicationName()
          The name of the application.
 List<String> getConfigurationTemplates()
          The names of the configuration templates associated with this application.
 Date getDateCreated()
          The date when the application was created.
 Date getDateUpdated()
          The date when the application was last modified.
 String getDescription()
          User-defined description of the application.
 List<String> getVersions()
          The names of the versions for this application.
 int hashCode()
           
 void setApplicationName(String applicationName)
          The name of the application.
 void setConfigurationTemplates(Collection<String> configurationTemplates)
          The names of the configuration templates associated with this application.
 void setDateCreated(Date dateCreated)
          The date when the application was created.
 void setDateUpdated(Date dateUpdated)
          The date when the application was last modified.
 void setDescription(String description)
          User-defined description of the application.
 void setVersions(Collection<String> versions)
          The names of the versions for this application.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 ApplicationDescription withApplicationName(String applicationName)
          The name of the application.
 ApplicationDescription withConfigurationTemplates(Collection<String> configurationTemplates)
          The names of the configuration templates associated with this application.
 ApplicationDescription withConfigurationTemplates(String... configurationTemplates)
          The names of the configuration templates associated with this application.
 ApplicationDescription withDateCreated(Date dateCreated)
          The date when the application was created.
 ApplicationDescription withDateUpdated(Date dateUpdated)
          The date when the application was last modified.
 ApplicationDescription withDescription(String description)
          User-defined description of the application.
 ApplicationDescription withVersions(Collection<String> versions)
          The names of the versions for this application.
 ApplicationDescription withVersions(String... versions)
          The names of the versions for this application.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ApplicationDescription

public ApplicationDescription()
Default constructor for a new ApplicationDescription object. Callers should use the setter or fluent setter (with...) methods to initialize this object after creating it.

Method Detail

getApplicationName

public String getApplicationName()
The name of the application.

Constraints:
Length: 1 - 100

Returns:
The name of the application.

setApplicationName

public void setApplicationName(String applicationName)
The name of the application.

Constraints:
Length: 1 - 100

Parameters:
applicationName - The name of the application.

withApplicationName

public ApplicationDescription withApplicationName(String applicationName)
The name of the application.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 100

Parameters:
applicationName - The name of the application.
Returns:
A reference to this updated object so that method calls can be chained together.

getDescription

public String getDescription()
User-defined description of the application.

Constraints:
Length: 0 - 200

Returns:
User-defined description of the application.

setDescription

public void setDescription(String description)
User-defined description of the application.

Constraints:
Length: 0 - 200

Parameters:
description - User-defined description of the application.

withDescription

public ApplicationDescription withDescription(String description)
User-defined description of the application.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 0 - 200

Parameters:
description - User-defined description of the application.
Returns:
A reference to this updated object so that method calls can be chained together.

getDateCreated

public Date getDateCreated()
The date when the application was created.

Returns:
The date when the application was created.

setDateCreated

public void setDateCreated(Date dateCreated)
The date when the application was created.

Parameters:
dateCreated - The date when the application was created.

withDateCreated

public ApplicationDescription withDateCreated(Date dateCreated)
The date when the application was created.

Returns a reference to this object so that method calls can be chained together.

Parameters:
dateCreated - The date when the application was created.
Returns:
A reference to this updated object so that method calls can be chained together.

getDateUpdated

public Date getDateUpdated()
The date when the application was last modified.

Returns:
The date when the application was last modified.

setDateUpdated

public void setDateUpdated(Date dateUpdated)
The date when the application was last modified.

Parameters:
dateUpdated - The date when the application was last modified.

withDateUpdated

public ApplicationDescription withDateUpdated(Date dateUpdated)
The date when the application was last modified.

Returns a reference to this object so that method calls can be chained together.

Parameters:
dateUpdated - The date when the application was last modified.
Returns:
A reference to this updated object so that method calls can be chained together.

getVersions

public List<String> getVersions()
The names of the versions for this application.

Returns:
The names of the versions for this application.

setVersions

public void setVersions(Collection<String> versions)
The names of the versions for this application.

Parameters:
versions - The names of the versions for this application.

withVersions

public ApplicationDescription withVersions(String... versions)
The names of the versions for this application.

Returns a reference to this object so that method calls can be chained together.

Parameters:
versions - The names of the versions for this application.
Returns:
A reference to this updated object so that method calls can be chained together.

withVersions

public ApplicationDescription withVersions(Collection<String> versions)
The names of the versions for this application.

Returns a reference to this object so that method calls can be chained together.

Parameters:
versions - The names of the versions for this application.
Returns:
A reference to this updated object so that method calls can be chained together.

getConfigurationTemplates

public List<String> getConfigurationTemplates()
The names of the configuration templates associated with this application.

Returns:
The names of the configuration templates associated with this application.

setConfigurationTemplates

public void setConfigurationTemplates(Collection<String> configurationTemplates)
The names of the configuration templates associated with this application.

Parameters:
configurationTemplates - The names of the configuration templates associated with this application.

withConfigurationTemplates

public ApplicationDescription withConfigurationTemplates(String... configurationTemplates)
The names of the configuration templates associated with this application.

Returns a reference to this object so that method calls can be chained together.

Parameters:
configurationTemplates - The names of the configuration templates associated with this application.
Returns:
A reference to this updated object so that method calls can be chained together.

withConfigurationTemplates

public ApplicationDescription withConfigurationTemplates(Collection<String> configurationTemplates)
The names of the configuration templates associated with this application.

Returns a reference to this object so that method calls can be chained together.

Parameters:
configurationTemplates - The names of the configuration templates associated with this application.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.