com.opensymphony.workflow.spi
Interface WorkflowEntry

All Known Implementing Classes:
HibernateWorkflowEntry, OJBWorkflowEntry, SimpleWorkflowEntry

public interface WorkflowEntry

Interface for a workflow entry.

Author:
Pat Lightbody

Field Summary
static int ACTIVATED
           
static int COMPLETED
           
static int CREATED
           
static int KILLED
           
static int SUSPENDED
           
static int UNKNOWN
           
 
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.
 

Field Detail

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
Method Detail

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.


OpenSymphony Workflow Project Page