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:
Serializable

public class WorkflowExecution
extends Object
implements Serializable

Represents a workflow execution.

See Also:
Serialized Form

Constructor Summary
WorkflowExecution()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getRunId()
          A system generated unique identifier for the workflow execution.
 String getWorkflowId()
          The user defined identifier associated with the workflow execution.
 int hashCode()
           
 void setRunId(String runId)
          A system generated unique identifier for the workflow execution.
 void setWorkflowId(String workflowId)
          The user defined identifier associated with the workflow execution.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 WorkflowExecution withRunId(String runId)
          A system generated unique identifier for the workflow execution.
 WorkflowExecution withWorkflowId(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 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(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(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 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(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(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 String toString()
Returns a string representation of this object; useful for testing and debugging.

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

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


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