Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.simpleworkflow.model
Class WorkflowTypeDetail

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

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

Contains details about a workflow type.

See Also:
Serialized Form

Constructor Summary
WorkflowTypeDetail()
           
 
Method Summary
 boolean equals(java.lang.Object obj)
           
 WorkflowTypeConfiguration getConfiguration()
          Configuration settings of the workflow type registered through RegisterWorkflowType
 WorkflowTypeInfo getTypeInfo()
          General information about the workflow type.
 int hashCode()
           
 void setConfiguration(WorkflowTypeConfiguration configuration)
          Configuration settings of the workflow type registered through RegisterWorkflowType
 void setTypeInfo(WorkflowTypeInfo typeInfo)
          General information about the workflow type.
 java.lang.String toString()
          Returns a string representation of this object; useful for testing and debugging.
 WorkflowTypeDetail withConfiguration(WorkflowTypeConfiguration configuration)
          Configuration settings of the workflow type registered through RegisterWorkflowType
 WorkflowTypeDetail withTypeInfo(WorkflowTypeInfo typeInfo)
          General information about the workflow type.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WorkflowTypeDetail

public WorkflowTypeDetail()
Method Detail

getTypeInfo

public WorkflowTypeInfo getTypeInfo()
General information about the workflow type.

The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.

Returns:
General information about the workflow type.

The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.

  • REGISTERED: The type is registered and available. Workers supporting this type should be running.
  • DEPRECATED: The type was deprecated using DeprecateWorkflowType, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.

setTypeInfo

public void setTypeInfo(WorkflowTypeInfo typeInfo)
General information about the workflow type.

The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.

Parameters:
typeInfo - General information about the workflow type.

The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.

  • REGISTERED: The type is registered and available. Workers supporting this type should be running.
  • DEPRECATED: The type was deprecated using DeprecateWorkflowType, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.

withTypeInfo

public WorkflowTypeDetail withTypeInfo(WorkflowTypeInfo typeInfo)
General information about the workflow type.

The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.

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

Parameters:
typeInfo - General information about the workflow type.

The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.

  • REGISTERED: The type is registered and available. Workers supporting this type should be running.
  • DEPRECATED: The type was deprecated using DeprecateWorkflowType, but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.
Returns:
A reference to this updated object so that method calls can be chained together.

getConfiguration

public WorkflowTypeConfiguration getConfiguration()
Configuration settings of the workflow type registered through RegisterWorkflowType

Returns:
Configuration settings of the workflow type registered through RegisterWorkflowType

setConfiguration

public void setConfiguration(WorkflowTypeConfiguration configuration)
Configuration settings of the workflow type registered through RegisterWorkflowType

Parameters:
configuration - Configuration settings of the workflow type registered through RegisterWorkflowType

withConfiguration

public WorkflowTypeDetail withConfiguration(WorkflowTypeConfiguration configuration)
Configuration settings of the workflow type registered through RegisterWorkflowType

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

Parameters:
configuration - Configuration settings of the workflow type registered through RegisterWorkflowType
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.