Uses of Interface
org.apache.commons.workflow.Activity

Packages that use Activity
org.apache.commons.workflow This package contains the core interfaces and classes that define the major components of the workflow management system. 
org.apache.commons.workflow.base Basic implementations and base classes for Workflow Management System applications. 
org.apache.commons.workflow.demo   
org.apache.commons.workflow.web Implementations of Steps in the web library. 
 

Uses of Activity in org.apache.commons.workflow
 

Methods in org.apache.commons.workflow that return Activity
 Activity[] Registry.findActivities()
          Return the complete set of Activity instances associated with this Activity.
 Activity Registry.findActivity(String id)
          Return the registered Activity with the specified identifier, if any; otherwise return null.
 Activity Context.getActivity()
          Return the Activity we will be executing when the execute() method is called, if any.
 

Methods in org.apache.commons.workflow with parameters of type Activity
 void Registry.addActivity(Activity activity)
          Add a new Activity to the set of Activity instances known to this Registry.
 void Context.call(Activity activity)
          Save the execution state (i.e.
 void Registry.removeActivity(Activity activity)
          Remove the specified Activity from this Registry.
 void Context.setActivity(Activity activity)
          Set the Activity to be executed, and make the first defined Step within this Activity the next action to be performed by execute().
 

Uses of Activity in org.apache.commons.workflow.base
 

Classes in org.apache.commons.workflow.base that implement Activity
 class BaseActivity
          BaseActivity is a convenient base class for more sophisticated Activity implementations.
 

Fields in org.apache.commons.workflow.base declared as Activity
protected  Activity BaseContext.activity
          The Activity that we are associated with and executing Steps from (if any).
 

Methods in org.apache.commons.workflow.base that return Activity
 Activity[] BaseRegistry.findActivities()
          Return the complete set of Activity instances associated with this Activity.
 Activity BaseRegistry.findActivity(String id)
          Return the registered Activity with the specified identifier, if any; otherwise return null.
 Activity BaseContext.getActivity()
          Return the Activity we will be executing when the execute() method is called, if any.
 

Methods in org.apache.commons.workflow.base with parameters of type Activity
 void BaseRegistry.addActivity(Activity activity)
          Add a new Activity to the set of Activity instances known to this Registry.
 void BaseContext.call(Activity activity)
          Save the execution state (ie the currently assigned next step) of the Activity we are currently executing, and begin executing the specified Activity.
 void BaseRegistry.removeActivity(Activity activity)
          Remove the specified Activity from this Registry.
 void BaseContext.setActivity(Activity activity)
          Set the Activity to be executed, and make the first defined Step within this Activity the next action to be performed by execute().
 

Uses of Activity in org.apache.commons.workflow.demo
 

Fields in org.apache.commons.workflow.demo declared as Activity
protected  Activity Main.activity
          The Activity constructed by our Digester.
 

Methods in org.apache.commons.workflow.demo with parameters of type Activity
 void Main.setActivity(Activity activity)
          Save the Activity that our Digester has constructed.
 

Uses of Activity in org.apache.commons.workflow.web
 

Methods in org.apache.commons.workflow.web with parameters of type Activity
 void ActivityServlet.setActivity(Activity activity)
          Set the Activity associated with this instance.
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.