| |
|
| java.lang.Object com.bigbross.bossa.work.WorkManager
Constructor Summary | |
public | WorkManager(Bossa engine) Creates a new empty work manager. | public | WorkManager() Creates a new empty work manager. |
Method Summary | |
public List | getActivities(Resource resource) Returns a list of all activities in the engine that are under the
responsability of the provided resource. | Bossa | getBossa() Returns the bossa engine this work manager is part. | public List | getWorkItems(Resource resource) Returns a list of all work items in the engine that can be opened
by the provided resource. | public List | getWorkItems(Resource resource, boolean getInitial) Returns a list of all work items in the engine that can be opened
by the provided resource, including the initial work items. |
WorkManager | public WorkManager(Bossa engine)(Code) | | Creates a new empty work manager.
Parameters: engine - the bossa engine this work manager is part. |
WorkManager | public WorkManager()(Code) | | Creates a new empty work manager.
|
getActivities | public List getActivities(Resource resource)(Code) | | Returns a list of all activities in the engine that are under the
responsability of the provided resource.
Parameters: resource - the resource. the list of activities. |
getBossa | Bossa getBossa()(Code) | | Returns the bossa engine this work manager is part.
The bossa engine this work manager is part. |
getWorkItems | public List getWorkItems(Resource resource)(Code) | | Returns a list of all work items in the engine that can be opened
by the provided resource.
Parameters: resource - the resource. the list of work items. |
getWorkItems | public List getWorkItems(Resource resource, boolean getInitial)(Code) | | Returns a list of all work items in the engine that can be opened
by the provided resource, including the initial work items.
Parameters: resource - the resource. Parameters: getInitial - set to true to get the initial workitems and to false to only get thestandard work items. the list of work items. |
|
|
|