Class GetApplicationResult
- java.lang.Object
-
- com.amazonaws.services.codedeploy.model.GetApplicationResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class GetApplicationResult extends Object implements Serializable, Cloneable
Represents the output of a get application operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetApplicationResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetApplicationResult
clone()
boolean
equals(Object obj)
ApplicationInfo
getApplication()
Information about the application.int
hashCode()
void
setApplication(ApplicationInfo application)
Information about the application.String
toString()
Returns a string representation of this object; useful for testing and debugging.GetApplicationResult
withApplication(ApplicationInfo application)
Information about the application.
-
-
-
Method Detail
-
setApplication
public void setApplication(ApplicationInfo application)
Information about the application.
- Parameters:
application
- Information about the application.
-
getApplication
public ApplicationInfo getApplication()
Information about the application.
- Returns:
- Information about the application.
-
withApplication
public GetApplicationResult withApplication(ApplicationInfo application)
Information about the application.
- Parameters:
application
- Information about the application.- Returns:
- Returns a reference to this 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 classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public GetApplicationResult clone()
-
-