Package com.ebasetech.xi.api.workflow
Interface WorkflowManagement.JobDescriptor
- Enclosing interface:
- WorkflowManagement
public static interface WorkflowManagement.JobDescriptor
Implementations of this interface provide information about a Job in the system
-
Method Summary
Modifier and Type Method Description java.util.Date
getCreationDate()
Answer the time of creation of the task enactmentjava.lang.String
getDescription()
The description of the processjava.lang.String
getIdentifier()
Answer a unique string handle for this descriptorjava.util.Date
getModificationDate()
Answer the time of most recent modification of the task enactmentjava.lang.String
getOpener()
resource who opened this jobjava.lang.String
getOwner()
Resource who is currently responsible for this jobint
getParentJobSequence()
If this is a sub process, this answers the sequence number of the parent processjava.lang.String
getParentProcessName()
If this is a sub process, this answers the name of the parent processint
getParentProcessVersion()
If this is a sub process, this answers the version of the parent processjava.lang.String
getProcessName()
Answer the name of the process of which this job is an enactmentint
getProcessVersion()
Answer the version number of the process of which this is an enactmentint
getSequence()
Answer the sequence number of the jobboolean
isCompleted()
Answers whether the job has completed or not
-
Method Details
-
getProcessName
java.lang.String getProcessName()Answer the name of the process of which this job is an enactment -
getProcessVersion
int getProcessVersion()Answer the version number of the process of which this is an enactment -
getSequence
int getSequence()Answer the sequence number of the job -
getIdentifier
java.lang.String getIdentifier()Answer a unique string handle for this descriptor -
getCreationDate
java.util.Date getCreationDate()Answer the time of creation of the task enactment -
getModificationDate
java.util.Date getModificationDate()Answer the time of most recent modification of the task enactment -
getOwner
java.lang.String getOwner()Resource who is currently responsible for this job -
getOpener
java.lang.String getOpener()resource who opened this job -
getParentProcessName
java.lang.String getParentProcessName()If this is a sub process, this answers the name of the parent process -
getParentProcessVersion
int getParentProcessVersion()If this is a sub process, this answers the version of the parent process -
getParentJobSequence
int getParentJobSequence()If this is a sub process, this answers the sequence number of the parent process -
getDescription
java.lang.String getDescription()The description of the process -
isCompleted
boolean isCompleted()Answers whether the job has completed or not
-