com.opensymphony.workflow.spi
Interface WorkflowEntry
- All Known Implementing Classes:
- HibernateWorkflowEntry, OJBWorkflowEntry, SimpleWorkflowEntry
public interface WorkflowEntry
Interface for a workflow entry.
- Author:
- Pat Lightbody
|
Method Summary |
long |
getId()
Returns the unique ID of the workflow entry. |
int |
getState()
|
String |
getWorkflowName()
Returns the name of the workflow that this entry is an instance of. |
boolean |
isInitialized()
Returns true if the workflow entry has been initialized. |
CREATED
static final int CREATED
- See Also:
- Constant Field Values
ACTIVATED
static final int ACTIVATED
- See Also:
- Constant Field Values
SUSPENDED
static final int SUSPENDED
- See Also:
- Constant Field Values
KILLED
static final int KILLED
- See Also:
- Constant Field Values
COMPLETED
static final int COMPLETED
- See Also:
- Constant Field Values
UNKNOWN
static final int UNKNOWN
- See Also:
- Constant Field Values
getId
long getId()
- Returns the unique ID of the workflow entry.
isInitialized
boolean isInitialized()
- Returns true if the workflow entry has been initialized.
getState
int getState()
getWorkflowName
String getWorkflowName()
- Returns the name of the workflow that this entry is an instance of.
|