Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.simpleworkflow.model
Class WorkflowExecution

java.lang.Object
  extended by com.amazonaws.services.simpleworkflow.model.WorkflowExecution
All Implemented Interfaces:
java.io.Serializable

public class WorkflowExecution
extends java.lang.Object
implements java.io.Serializable

Represents a workflow execution.

See Also:
Serialized Form

Constructor Summary
WorkflowExecution()
           
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 java.lang.String getRunId()
          A system generated unique identifier for the workflow execution.
 java.lang.String getWorkflowId()
          The user defined identifier associated with the workflow execution.
 int hashCode()
           
 void setRunId(java.lang.String runId)
          A system generated unique identifier for the workflow execution.
 void setWorkflowId(java.lang.String workflowId)
          The user defined identifier associated with the workflow execution.
 java.lang.String toString()
          Returns a string representation of this object; useful for testing and debugging.
 WorkflowExecution withRunId(java.lang.String runId)
          A system generated unique identifier for the workflow execution.
 WorkflowExecution withWorkflowId(java.lang.String workflowId)
          The user defined identifier associated with the workflow execution.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WorkflowExecution

public WorkflowExecution()
Method Detail

getWorkflowId

public java.lang.String getWorkflowId()
The user defined identifier associated with the workflow execution.

Constraints:
Length: 1 - 256

Returns:
The user defined identifier associated with the workflow execution.

setWorkflowId

public void setWorkflowId(java.lang.String workflowId)
The user defined identifier associated with the workflow execution.

Constraints:
Length: 1 - 256

Parameters:
workflowId - The user defined identifier associated with the workflow execution.

withWorkflowId

public WorkflowExecution withWorkflowId(java.lang.String workflowId)
The user defined identifier associated with the workflow execution.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 256

Parameters:
workflowId - The user defined identifier associated with the workflow execution.
Returns:
A reference to this updated object so that method calls can be chained together.

getRunId

public java.lang.String getRunId()
A system generated unique identifier for the workflow execution.

Constraints:
Length: 1 - 64

Returns:
A system generated unique identifier for the workflow execution.

setRunId

public void setRunId(java.lang.String runId)
A system generated unique identifier for the workflow execution.

Constraints:
Length: 1 - 64

Parameters:
runId - A system generated unique identifier for the workflow execution.

withRunId

public WorkflowExecution withRunId(java.lang.String runId)
A system generated unique identifier for the workflow execution.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 1 - 64

Parameters:
runId - A system generated unique identifier for the workflow execution.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public java.lang.String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class java.lang.Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class java.lang.Object

equals

public boolean equals(java.lang.Object obj)
Overrides:
equals in class java.lang.Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.