Uses of Interface
de.danet.an.workflow.omgcore.WfRequester

Packages that use WfRequester
de.danet.an.workflow.api This package defines the the workflow API provided by Danet's workflow component.  
de.danet.an.workflow.omgcore This package defines the core domain of a workflow management system.  
 

Uses of WfRequester in de.danet.an.workflow.api
 

Subinterfaces of WfRequester in de.danet.an.workflow.api
 interface Activity
          Interface Activity adds some functions to the OMG activity.
 

Classes in de.danet.an.workflow.api that implement WfRequester
 class DefaultRequester
          This class provides an implementation of a WfRequester.
 

Methods in de.danet.an.workflow.api with parameters of type WfRequester
 void WorkflowService.registerRequester(WfRequester requester)
          Register a WfRequester.
 java.util.Collection WorkflowService.requestedBy(WfRequester req)
          Return the processes requested by the given requester.
 

Uses of WfRequester in de.danet.an.workflow.omgcore
 

Subinterfaces of WfRequester in de.danet.an.workflow.omgcore
 interface WfActivity
          WfActivity is a step in a process that is associated, as part of an aggregation, with a single WfProcess.
 

Methods in de.danet.an.workflow.omgcore that return WfRequester
 WfRequester WfProcess.requester()
          Returns the WfRequester associated with this WfProcess.
 

Methods in de.danet.an.workflow.omgcore with parameters of type WfRequester
 void WfProcess.setRequester(WfRequester requester)
          Reassigns the WfProcess to another WfRequester.
 WfProcess WfProcessMgr.createProcess(WfRequester requester)
          Create instances of a process and link its requester.