public class ActionRevision
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents information about the version (or revision) of an action.
Modifier and Type | Field and Description |
---|---|
private java.util.Date |
created
The date and time when the most recent version of the action was created,
in timestamp format.
|
private java.lang.String |
revisionChangeId
The unique identifier of the change that set the state to this revision,
for example a deployment ID or timestamp.
|
private java.lang.String |
revisionId
The system-generated unique ID that identifies the revision number of the
action.
|
Constructor and Description |
---|
ActionRevision() |
Modifier and Type | Method and Description |
---|---|
ActionRevision |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.Date |
getCreated()
The date and time when the most recent version of the action was created,
in timestamp format.
|
java.lang.String |
getRevisionChangeId()
The unique identifier of the change that set the state to this revision,
for example a deployment ID or timestamp.
|
java.lang.String |
getRevisionId()
The system-generated unique ID that identifies the revision number of the
action.
|
int |
hashCode() |
void |
setCreated(java.util.Date created)
The date and time when the most recent version of the action was created,
in timestamp format.
|
void |
setRevisionChangeId(java.lang.String revisionChangeId)
The unique identifier of the change that set the state to this revision,
for example a deployment ID or timestamp.
|
void |
setRevisionId(java.lang.String revisionId)
The system-generated unique ID that identifies the revision number of the
action.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ActionRevision |
withCreated(java.util.Date created)
The date and time when the most recent version of the action was created,
in timestamp format.
|
ActionRevision |
withRevisionChangeId(java.lang.String revisionChangeId)
The unique identifier of the change that set the state to this revision,
for example a deployment ID or timestamp.
|
ActionRevision |
withRevisionId(java.lang.String revisionId)
The system-generated unique ID that identifies the revision number of the
action.
|
private java.lang.String revisionId
The system-generated unique ID that identifies the revision number of the action.
private java.lang.String revisionChangeId
The unique identifier of the change that set the state to this revision, for example a deployment ID or timestamp.
private java.util.Date created
The date and time when the most recent version of the action was created, in timestamp format.
public void setRevisionId(java.lang.String revisionId)
The system-generated unique ID that identifies the revision number of the action.
revisionId
- The system-generated unique ID that identifies the revision number
of the action.public java.lang.String getRevisionId()
The system-generated unique ID that identifies the revision number of the action.
public ActionRevision withRevisionId(java.lang.String revisionId)
The system-generated unique ID that identifies the revision number of the action.
revisionId
- The system-generated unique ID that identifies the revision number
of the action.public void setRevisionChangeId(java.lang.String revisionChangeId)
The unique identifier of the change that set the state to this revision, for example a deployment ID or timestamp.
revisionChangeId
- The unique identifier of the change that set the state to this
revision, for example a deployment ID or timestamp.public java.lang.String getRevisionChangeId()
The unique identifier of the change that set the state to this revision, for example a deployment ID or timestamp.
public ActionRevision withRevisionChangeId(java.lang.String revisionChangeId)
The unique identifier of the change that set the state to this revision, for example a deployment ID or timestamp.
revisionChangeId
- The unique identifier of the change that set the state to this
revision, for example a deployment ID or timestamp.public void setCreated(java.util.Date created)
The date and time when the most recent version of the action was created, in timestamp format.
created
- The date and time when the most recent version of the action was
created, in timestamp format.public java.util.Date getCreated()
The date and time when the most recent version of the action was created, in timestamp format.
public ActionRevision withCreated(java.util.Date created)
The date and time when the most recent version of the action was created, in timestamp format.
created
- The date and time when the most recent version of the action was
created, in timestamp format.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 ActionRevision clone()
clone
in class java.lang.Object