| |
|
| org.obe.spi.model.WorkItem
All known Subclasses: org.obe.engine.persistence.memory.BasicWorkItem,
WorkItem | public interface WorkItem extends AttributedEntity(Code) | | Holds the persistent state of a work item. This interface
uses only standard Java data types; it does not need to know about
WAPI data types - conversions are handled externally to the persistence
service. No parameter validation need be performed by implementations.
author: Adrian Price author: Anthony Eden See Also: WorkItemAttributes |
attributes | String[] attributes(Code) | | Attributes for WorkItem.
N.B. DO NOT WRITE TO THIS ARRAY!!!
|
propertyDescriptors | PropertyDescriptor[] propertyDescriptors(Code) | | Property descriptors for WorkItem.
N.B. DO NOT WRITE TO THIS ARRAY!!!
|
getActivityDefinitionId | String getActivityDefinitionId()(Code) | | |
getActivityInstance | ActivityInstance getActivityInstance()(Code) | | Returns the parent activity instance for this work item.
The parent ActivityInstance |
getPriority | int getPriority()(Code) | | |
getToolIndex | int getToolIndex()(Code) | | |
setCompletedDate | void setCompletedDate(Date completedDate)(Code) | | |
setParticipant | void setParticipant(String participant)(Code) | | |
setPriority | void setPriority(int priority)(Code) | | |
setStartedDate | void setStartedDate(Date startedDate)(Code) | | |
setState | void setState(int state)(Code) | | |
setTargetDate | void setTargetDate(Date targetDate)(Code) | | |
setToolIndex | void setToolIndex(int index)(Code) | | |
|
|
|