public class History
extends java.lang.Object
implements java.io.Serializable
Paginated representation of a workflow history for a workflow execution. This is the up to date, complete and authoritative record of the events related to all tasks and events in the life of the workflow execution.
| コンストラクタと説明 |
|---|
History() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.List<HistoryEvent> |
getEvents()
The list of history events.
|
java.lang.String |
getNextPageToken()
The token for the next page.
|
int |
hashCode() |
void |
setEvents(java.util.Collection<HistoryEvent> events)
The list of history events.
|
void |
setNextPageToken(java.lang.String nextPageToken)
The token for the next page.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
History |
withEvents(java.util.Collection<HistoryEvent> events)
The list of history events.
|
History |
withEvents(HistoryEvent... events)
The list of history events.
|
History |
withNextPageToken(java.lang.String nextPageToken)
The token for the next page.
|
public java.util.List<HistoryEvent> getEvents()
public void setEvents(java.util.Collection<HistoryEvent> events)
events - The list of history events.public History withEvents(HistoryEvent... events)
Returns a reference to this object so that method calls can be chained together.
events - The list of history events.public History withEvents(java.util.Collection<HistoryEvent> events)
Returns a reference to this object so that method calls can be chained together.
events - The list of history events.public java.lang.String getNextPageToken()
Constraints:
Length: 0 - 2048
public void setNextPageToken(java.lang.String nextPageToken)
Constraints:
Length: 0 - 2048
nextPageToken - The token for the next page. If set, the history consists of more than
one page and the next page can be retrieved by repeating the request
with this token and all other arguments unchanged.public History withNextPageToken(java.lang.String nextPageToken)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 2048
nextPageToken - The token for the next page. If set, the history consists of more than
one page and the next page can be retrieved by repeating the request
with this token and all other arguments unchanged.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object