Class ApplicationInfo
- java.lang.Object
-
- com.amazonaws.services.codedeploy.model.ApplicationInfo
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ApplicationInfo extends Object implements Serializable, Cloneable
Information about an application.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ApplicationInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApplicationInfoclone()booleanequals(Object obj)StringgetApplicationId()The application ID.StringgetApplicationName()The application name.DategetCreateTime()The time at which the application was created.BooleangetLinkedToGitHub()True if the user has authenticated with GitHub for the specified application; otherwise, false.inthashCode()BooleanisLinkedToGitHub()True if the user has authenticated with GitHub for the specified application; otherwise, false.voidsetApplicationId(String applicationId)The application ID.voidsetApplicationName(String applicationName)The application name.voidsetCreateTime(Date createTime)The time at which the application was created.voidsetLinkedToGitHub(Boolean linkedToGitHub)True if the user has authenticated with GitHub for the specified application; otherwise, false.StringtoString()Returns a string representation of this object; useful for testing and debugging.ApplicationInfowithApplicationId(String applicationId)The application ID.ApplicationInfowithApplicationName(String applicationName)The application name.ApplicationInfowithCreateTime(Date createTime)The time at which the application was created.ApplicationInfowithLinkedToGitHub(Boolean linkedToGitHub)True if the user has authenticated with GitHub for the specified application; otherwise, false.
-
-
-
Method Detail
-
setApplicationId
public void setApplicationId(String applicationId)
The application ID.
- Parameters:
applicationId- The application ID.
-
getApplicationId
public String getApplicationId()
The application ID.
- Returns:
- The application ID.
-
withApplicationId
public ApplicationInfo withApplicationId(String applicationId)
The application ID.
- Parameters:
applicationId- The application ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setApplicationName
public void setApplicationName(String applicationName)
The application name.
- Parameters:
applicationName- The application name.
-
getApplicationName
public String getApplicationName()
The application name.
- Returns:
- The application name.
-
withApplicationName
public ApplicationInfo withApplicationName(String applicationName)
The application name.
- Parameters:
applicationName- The application name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setCreateTime
public void setCreateTime(Date createTime)
The time at which the application was created.
- Parameters:
createTime- The time at which the application was created.
-
getCreateTime
public Date getCreateTime()
The time at which the application was created.
- Returns:
- The time at which the application was created.
-
withCreateTime
public ApplicationInfo withCreateTime(Date createTime)
The time at which the application was created.
- Parameters:
createTime- The time at which the application was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setLinkedToGitHub
public void setLinkedToGitHub(Boolean linkedToGitHub)
True if the user has authenticated with GitHub for the specified application; otherwise, false.
- Parameters:
linkedToGitHub- True if the user has authenticated with GitHub for the specified application; otherwise, false.
-
getLinkedToGitHub
public Boolean getLinkedToGitHub()
True if the user has authenticated with GitHub for the specified application; otherwise, false.
- Returns:
- True if the user has authenticated with GitHub for the specified application; otherwise, false.
-
withLinkedToGitHub
public ApplicationInfo withLinkedToGitHub(Boolean linkedToGitHub)
True if the user has authenticated with GitHub for the specified application; otherwise, false.
- Parameters:
linkedToGitHub- True if the user has authenticated with GitHub for the specified application; otherwise, false.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isLinkedToGitHub
public Boolean isLinkedToGitHub()
True if the user has authenticated with GitHub for the specified application; otherwise, false.
- Returns:
- True if the user has authenticated with GitHub for the specified application; otherwise, false.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ApplicationInfo clone()
-
-