public class ChildWorkflowExecutionStartedEventAttributes
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Provides details of the ChildWorkflowExecutionStarted
event.
Modifier and Type | Field and Description |
---|---|
private java.lang.Long |
initiatedEventId
The ID of the
StartChildWorkflowExecutionInitiated event
corresponding to the StartChildWorkflowExecution decision to
start this child workflow execution. |
private WorkflowExecution |
workflowExecution
The child workflow execution that was started.
|
private WorkflowType |
workflowType
The type of the child workflow execution.
|
Constructor and Description |
---|
ChildWorkflowExecutionStartedEventAttributes() |
Modifier and Type | Method and Description |
---|---|
ChildWorkflowExecutionStartedEventAttributes |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.Long |
getInitiatedEventId()
The ID of the
StartChildWorkflowExecutionInitiated event
corresponding to the StartChildWorkflowExecution decision to
start this child workflow execution. |
WorkflowExecution |
getWorkflowExecution()
The child workflow execution that was started.
|
WorkflowType |
getWorkflowType()
The type of the child workflow execution.
|
int |
hashCode() |
void |
setInitiatedEventId(java.lang.Long initiatedEventId)
The ID of the
StartChildWorkflowExecutionInitiated event
corresponding to the StartChildWorkflowExecution decision to
start this child workflow execution. |
void |
setWorkflowExecution(WorkflowExecution workflowExecution)
The child workflow execution that was started.
|
void |
setWorkflowType(WorkflowType workflowType)
The type of the child workflow execution.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ChildWorkflowExecutionStartedEventAttributes |
withInitiatedEventId(java.lang.Long initiatedEventId)
The ID of the
StartChildWorkflowExecutionInitiated event
corresponding to the StartChildWorkflowExecution decision to
start this child workflow execution. |
ChildWorkflowExecutionStartedEventAttributes |
withWorkflowExecution(WorkflowExecution workflowExecution)
The child workflow execution that was started.
|
ChildWorkflowExecutionStartedEventAttributes |
withWorkflowType(WorkflowType workflowType)
The type of the child workflow execution.
|
private WorkflowExecution workflowExecution
The child workflow execution that was started.
private WorkflowType workflowType
The type of the child workflow execution.
private java.lang.Long initiatedEventId
The ID of the StartChildWorkflowExecutionInitiated
event
corresponding to the StartChildWorkflowExecution
decision to
start this child workflow execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
public ChildWorkflowExecutionStartedEventAttributes()
public void setWorkflowExecution(WorkflowExecution workflowExecution)
The child workflow execution that was started.
workflowExecution
- The child workflow execution that was started.public WorkflowExecution getWorkflowExecution()
The child workflow execution that was started.
public ChildWorkflowExecutionStartedEventAttributes withWorkflowExecution(WorkflowExecution workflowExecution)
The child workflow execution that was started.
workflowExecution
- The child workflow execution that was started.public void setWorkflowType(WorkflowType workflowType)
The type of the child workflow execution.
workflowType
- The type of the child workflow execution.public WorkflowType getWorkflowType()
The type of the child workflow execution.
public ChildWorkflowExecutionStartedEventAttributes withWorkflowType(WorkflowType workflowType)
The type of the child workflow execution.
workflowType
- The type of the child workflow execution.public void setInitiatedEventId(java.lang.Long initiatedEventId)
The ID of the StartChildWorkflowExecutionInitiated
event
corresponding to the StartChildWorkflowExecution
decision to
start this child workflow execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
initiatedEventId
- The ID of the StartChildWorkflowExecutionInitiated
event corresponding to the
StartChildWorkflowExecution
decision to start this
child workflow execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up
to this event.public java.lang.Long getInitiatedEventId()
The ID of the StartChildWorkflowExecutionInitiated
event
corresponding to the StartChildWorkflowExecution
decision to
start this child workflow execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
StartChildWorkflowExecutionInitiated
event corresponding to the
StartChildWorkflowExecution
decision to start this
child workflow execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading
up to this event.public ChildWorkflowExecutionStartedEventAttributes withInitiatedEventId(java.lang.Long initiatedEventId)
The ID of the StartChildWorkflowExecutionInitiated
event
corresponding to the StartChildWorkflowExecution
decision to
start this child workflow execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up to
this event.
initiatedEventId
- The ID of the StartChildWorkflowExecutionInitiated
event corresponding to the
StartChildWorkflowExecution
decision to start this
child workflow execution. This information can be useful for
diagnosing problems by tracing back the chain of events leading up
to this event.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 ChildWorkflowExecutionStartedEventAttributes clone()
clone
in class java.lang.Object