| java.lang.Object org.concern.Work
All known Subclasses: org.concern.Assignment,
Work | public class Work (Code) | | Work describes a unit of concern. It referes to a process, an activity and a subject.
|
Constructor Summary | |
protected | Work() | public | Work(String process, String activity, String subjectId) | public | Work(String process, String activity, String subjectId, String subjectLine, String originator, Timestamp due, int level, String lockedBy, Timestamp lockedUntil) | public | Work(String process, String activity, String subjectId, String subjectLine, String originator, long due, int level, String lockedBy, Date lockedUntil) |
level | protected int level(Code) | | |
getActivity | public String getActivity()(Code) | | The name of the activity that is to be executed.
|
getLevel | public int getLevel()(Code) | | |
getLockedBy | public String getLockedBy()(Code) | | Currently locked by ..
|
getLockedUntil | public Timestamp getLockedUntil()(Code) | | Supposably locked until ..
|
getOriginator | public String getOriginator()(Code) | | The subject orginated from ..
|
getProcess | public String getProcess()(Code) | | The name of the process to which the activity belongs.
the process name |
getSubject | public Object getSubject()(Code) | | The subject itself as loaded by the Loader.
the subject |
getSubjectId | public String getSubjectId()(Code) | | identifies the subject |
getSubjectLine | public String getSubjectLine()(Code) | | The localized subject line
|
hashCode | public int hashCode()(Code) | | |
isOptional | public boolean isOptional()(Code) | | |
setLevel | public void setLevel(int level)(Code) | | |
setSubject | public void setSubject(Object subject)(Code) | | The subject itself as loaded by the Loader.
Parameters: subject - the subject |
|
|