Class ExternalWorkflowExecutionSignaledEventAttributes
- java.lang.Object
-
- com.amazonaws.services.simpleworkflow.model.ExternalWorkflowExecutionSignaledEventAttributes
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ExternalWorkflowExecutionSignaledEventAttributes extends Object implements Serializable, Cloneable
Provides details of the
ExternalWorkflowExecutionSignaledevent.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExternalWorkflowExecutionSignaledEventAttributes()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExternalWorkflowExecutionSignaledEventAttributesclone()booleanequals(Object obj)LonggetInitiatedEventId()The ID of theSignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal.WorkflowExecutiongetWorkflowExecution()The external workflow execution that the signal was delivered to.inthashCode()voidsetInitiatedEventId(Long initiatedEventId)The ID of theSignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal.voidsetWorkflowExecution(WorkflowExecution workflowExecution)The external workflow execution that the signal was delivered to.StringtoString()Returns a string representation of this object; useful for testing and debugging.ExternalWorkflowExecutionSignaledEventAttributeswithInitiatedEventId(Long initiatedEventId)The ID of theSignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal.ExternalWorkflowExecutionSignaledEventAttributeswithWorkflowExecution(WorkflowExecution workflowExecution)The external workflow execution that the signal was delivered to.
-
-
-
Method Detail
-
setWorkflowExecution
public void setWorkflowExecution(WorkflowExecution workflowExecution)
The external workflow execution that the signal was delivered to.
- Parameters:
workflowExecution- The external workflow execution that the signal was delivered to.
-
getWorkflowExecution
public WorkflowExecution getWorkflowExecution()
The external workflow execution that the signal was delivered to.
- Returns:
- The external workflow execution that the signal was delivered to.
-
withWorkflowExecution
public ExternalWorkflowExecutionSignaledEventAttributes withWorkflowExecution(WorkflowExecution workflowExecution)
The external workflow execution that the signal was delivered to.
- Parameters:
workflowExecution- The external workflow execution that the signal was delivered to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setInitiatedEventId
public void setInitiatedEventId(Long initiatedEventId)
The ID of the
SignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Parameters:
initiatedEventId- The ID of theSignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
-
getInitiatedEventId
public Long getInitiatedEventId()
The ID of the
SignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Returns:
- The ID of the
SignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
-
withInitiatedEventId
public ExternalWorkflowExecutionSignaledEventAttributes withInitiatedEventId(Long initiatedEventId)
The ID of the
SignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- Parameters:
initiatedEventId- The ID of theSignalExternalWorkflowExecutionInitiatedevent corresponding to theSignalExternalWorkflowExecutiondecision to request this signal. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public ExternalWorkflowExecutionSignaledEventAttributes clone()
-
-