public class WorkflowTypeInfo
extends java.lang.Object
implements java.io.Serializable
Contains information about a workflow type.
| コンストラクタと説明 |
|---|
WorkflowTypeInfo() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.Date |
getCreationDate()
The date when this type was registered.
|
java.util.Date |
getDeprecationDate()
If the type is in deprecated state, then it is set to the date when
the type was deprecated.
|
java.lang.String |
getDescription()
The description of the type registered through
RegisterWorkflowType.
|
java.lang.String |
getStatus()
The current status of the workflow type.
|
WorkflowType |
getWorkflowType()
The workflow type this information is about.
|
int |
hashCode() |
void |
setCreationDate(java.util.Date creationDate)
The date when this type was registered.
|
void |
setDeprecationDate(java.util.Date deprecationDate)
If the type is in deprecated state, then it is set to the date when
the type was deprecated.
|
void |
setDescription(java.lang.String description)
The description of the type registered through
RegisterWorkflowType.
|
void |
setStatus(RegistrationStatus status)
The current status of the workflow type.
|
void |
setStatus(java.lang.String status)
The current status of the workflow type.
|
void |
setWorkflowType(WorkflowType workflowType)
The workflow type this information is about.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
WorkflowTypeInfo |
withCreationDate(java.util.Date creationDate)
The date when this type was registered.
|
WorkflowTypeInfo |
withDeprecationDate(java.util.Date deprecationDate)
If the type is in deprecated state, then it is set to the date when
the type was deprecated.
|
WorkflowTypeInfo |
withDescription(java.lang.String description)
The description of the type registered through
RegisterWorkflowType.
|
WorkflowTypeInfo |
withStatus(RegistrationStatus status)
The current status of the workflow type.
|
WorkflowTypeInfo |
withStatus(java.lang.String status)
The current status of the workflow type.
|
WorkflowTypeInfo |
withWorkflowType(WorkflowType workflowType)
The workflow type this information is about.
|
public WorkflowType getWorkflowType()
public void setWorkflowType(WorkflowType workflowType)
workflowType - The workflow type this information is about.public WorkflowTypeInfo withWorkflowType(WorkflowType workflowType)
Returns a reference to this object so that method calls can be chained together.
workflowType - The workflow type this information is about.public java.lang.String getStatus()
Constraints:
Allowed Values: REGISTERED, DEPRECATED
RegistrationStatuspublic void setStatus(java.lang.String status)
Constraints:
Allowed Values: REGISTERED, DEPRECATED
status - The current status of the workflow type.RegistrationStatuspublic WorkflowTypeInfo withStatus(java.lang.String status)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: REGISTERED, DEPRECATED
status - The current status of the workflow type.RegistrationStatuspublic void setStatus(RegistrationStatus status)
Constraints:
Allowed Values: REGISTERED, DEPRECATED
status - The current status of the workflow type.RegistrationStatuspublic WorkflowTypeInfo withStatus(RegistrationStatus status)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Allowed Values: REGISTERED, DEPRECATED
status - The current status of the workflow type.RegistrationStatuspublic java.lang.String getDescription()
Constraints:
Length: 0 - 1024
public void setDescription(java.lang.String description)
Constraints:
Length: 0 - 1024
description - The description of the type registered through
RegisterWorkflowType.public WorkflowTypeInfo withDescription(java.lang.String description)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 1024
description - The description of the type registered through
RegisterWorkflowType.public java.util.Date getCreationDate()
public void setCreationDate(java.util.Date creationDate)
creationDate - The date when this type was registered.public WorkflowTypeInfo withCreationDate(java.util.Date creationDate)
Returns a reference to this object so that method calls can be chained together.
creationDate - The date when this type was registered.public java.util.Date getDeprecationDate()
public void setDeprecationDate(java.util.Date deprecationDate)
deprecationDate - If the type is in deprecated state, then it is set to the date when
the type was deprecated.public WorkflowTypeInfo withDeprecationDate(java.util.Date deprecationDate)
Returns a reference to this object so that method calls can be chained together.
deprecationDate - If the type is in deprecated state, then it is set to the date when
the type was deprecated.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object