public class GetApplicationRevisionResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the output of a get application revision operation.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
applicationName
The name of the application that corresponds to the revision.
|
private RevisionLocation |
revision
Additional information about the revision, including type and location.
|
private GenericRevisionInfo |
revisionInfo
General information about the revision.
|
Constructor and Description |
---|
GetApplicationRevisionResult() |
Modifier and Type | Method and Description |
---|---|
GetApplicationRevisionResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getApplicationName()
The name of the application that corresponds to the revision.
|
RevisionLocation |
getRevision()
Additional information about the revision, including type and location.
|
GenericRevisionInfo |
getRevisionInfo()
General information about the revision.
|
int |
hashCode() |
void |
setApplicationName(java.lang.String applicationName)
The name of the application that corresponds to the revision.
|
void |
setRevision(RevisionLocation revision)
Additional information about the revision, including type and location.
|
void |
setRevisionInfo(GenericRevisionInfo revisionInfo)
General information about the revision.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
GetApplicationRevisionResult |
withApplicationName(java.lang.String applicationName)
The name of the application that corresponds to the revision.
|
GetApplicationRevisionResult |
withRevision(RevisionLocation revision)
Additional information about the revision, including type and location.
|
GetApplicationRevisionResult |
withRevisionInfo(GenericRevisionInfo revisionInfo)
General information about the revision.
|
private java.lang.String applicationName
The name of the application that corresponds to the revision.
private RevisionLocation revision
Additional information about the revision, including type and location.
private GenericRevisionInfo revisionInfo
General information about the revision.
public void setApplicationName(java.lang.String applicationName)
The name of the application that corresponds to the revision.
applicationName
- The name of the application that corresponds to the revision.public java.lang.String getApplicationName()
The name of the application that corresponds to the revision.
public GetApplicationRevisionResult withApplicationName(java.lang.String applicationName)
The name of the application that corresponds to the revision.
applicationName
- The name of the application that corresponds to the revision.public void setRevision(RevisionLocation revision)
Additional information about the revision, including type and location.
revision
- Additional information about the revision, including type and
location.public RevisionLocation getRevision()
Additional information about the revision, including type and location.
public GetApplicationRevisionResult withRevision(RevisionLocation revision)
Additional information about the revision, including type and location.
revision
- Additional information about the revision, including type and
location.public void setRevisionInfo(GenericRevisionInfo revisionInfo)
General information about the revision.
revisionInfo
- General information about the revision.public GenericRevisionInfo getRevisionInfo()
General information about the revision.
public GetApplicationRevisionResult withRevisionInfo(GenericRevisionInfo revisionInfo)
General information about the revision.
revisionInfo
- General information about the revision.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public GetApplicationRevisionResult clone()
clone
in class java.lang.Object