public class TaskFlowId
extends java.lang.Object
implements java.io.Serializable
| Constructor and Description |
|---|
TaskFlowId(java.lang.String identifier)
Deprecated.
As of release 11.1.1.1.0, replaced by
parse(String) method. |
TaskFlowId(java.lang.String documentName,
java.lang.String localTaskFlowId)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getDocumentName() |
java.lang.String |
getFullyQualifiedName()
Gets the fully qualified name for this taskflow id.
This is of the form
<document name>#<local task flow id>
For example,
"/WEB-INF/mytask.xml#mytask" In the event of change, this fully qualified name is guranteed to be backward compatible. |
java.lang.String |
getLocalTaskFlowId() |
int |
hashCode() |
static TaskFlowId |
parse(java.lang.String identifier)
Construct a task flow ID from the string representation of the task flow ID.
|
java.lang.String |
toString() |
public TaskFlowId(java.lang.String documentName,
java.lang.String localTaskFlowId)
documentName - the name of the XML document that contains this task flow
definition.localTaskFlowId - the name of the task flow inside the XML document.@Deprecated public TaskFlowId(java.lang.String identifier)
parse(String) method.<document>#<id>
/WEB-INF/mytask.xml#taskA
/WEB-INF/mytask.xml and the
task flow id is taskA.identifier - the unique taskflow identifierpublic java.lang.String getDocumentName()
public java.lang.String getLocalTaskFlowId()
public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectobj - public int hashCode()
hashCode in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.String getFullyQualifiedName()
<document name>#<local task flow id>
"/WEB-INF/mytask.xml#mytask"
"/WEB-INF/po/enter-order.xml#enter-order
public static TaskFlowId parse(java.lang.String identifier)
Expects the format to be: <document>#<id>
For example:
/WEB-INF/mytask.xml#taskA
specifies that the document is /WEB-INF/mytask.xml and the
task flow id is taskA.
identifier - string representation of a task flow ID.