Uses of Class
org.jbpm.graph.def.Action

Packages that use Action
org.jbpm.graph.action contains basic action implementations. 
org.jbpm.graph.def contains all structural elements of a process graph. 
org.jbpm.graph.exe contains the runtime structures for process executions. 
org.jbpm.graph.log graph execution logs. 
org.jbpm.instantiation is for instantiating delegation classes and making them persistable with class Delegation. 
org.jbpm.job   
org.jbpm.jpdl.xml jpdl xml parsing. 
org.jbpm.scheduler.def   
 

Uses of Action in org.jbpm.graph.action
 

Subclasses of Action in org.jbpm.graph.action
 class MailAction
           
 class Script
           
 

Methods in org.jbpm.graph.action that return types with arguments of type Action
static java.lang.Class<? extends Action> ActionTypes.getActionType(java.lang.String name)
           
static java.util.Set<java.lang.Class<? extends Action>> ActionTypes.getActionTypes()
           
 

Method parameters in org.jbpm.graph.action with type arguments of type Action
static java.lang.String ActionTypes.getActionName(java.lang.Class<? extends Action> type)
           
 

Uses of Action in org.jbpm.graph.def
 

Fields in org.jbpm.graph.def declared as Action
protected  Action Node.action
           
protected  Action Action.referencedAction
           
 

Fields in org.jbpm.graph.def with type parameters of type Action
protected  java.util.List<Action> Event.actions
           
protected  java.util.List<Action> ExceptionHandler.actions
           
protected  java.util.Map<java.lang.String,Action> ProcessDefinition.actions
           
 

Methods in org.jbpm.graph.def that return Action
 Action Event.addAction(Action action)
           
 Action ProcessDefinition.addAction(Action action)
          creates a bidirectional relation between this process definition and the given action.
 Action Node.getAction()
           
 Action ProcessDefinition.getAction(java.lang.String name)
           
 Action Action.getReferencedAction()
           
 

Methods in org.jbpm.graph.def that return types with arguments of type Action
 java.util.List<Action> Event.getActions()
          is the list of actions associated to this event.
 java.util.List<Action> ExceptionHandler.getActions()
           
 java.util.Map<java.lang.String,Action> ProcessDefinition.getActions()
           
 

Methods in org.jbpm.graph.def with parameters of type Action
 Action Event.addAction(Action action)
           
 void ExceptionHandler.addAction(Action action)
           
 Action ProcessDefinition.addAction(Action action)
          creates a bidirectional relation between this process definition and the given action.
protected  ExecuteActionJob GraphElement.createAsyncActionExecutionJob(Token token, Action action)
           
 void GraphElement.executeAction(Action action, ExecutionContext executionContext)
           
 void Event.removeAction(Action action)
           
 void ExceptionHandler.removeAction(Action action)
           
 void ProcessDefinition.removeAction(Action action)
          removes the bidirectional relation between this process definition and the given action.
 void Node.setAction(Action action)
           
 void Action.setReferencedAction(Action referencedAction)
           
 

Uses of Action in org.jbpm.graph.exe
 

Fields in org.jbpm.graph.exe declared as Action
protected  Action RuntimeAction.action
           
protected  Action ExecutionContext.action
           
 

Methods in org.jbpm.graph.exe that return Action
 Action RuntimeAction.getAction()
           
 Action ExecutionContext.getAction()
           
 

Methods in org.jbpm.graph.exe with parameters of type Action
 void ExecutionContext.setAction(Action action)
           
 

Constructors in org.jbpm.graph.exe with parameters of type Action
RuntimeAction(Event event, Action action)
          creates a runtime action.
RuntimeAction(GraphElement graphElement, java.lang.String eventType, Action action)
           
 

Uses of Action in org.jbpm.graph.log
 

Fields in org.jbpm.graph.log declared as Action
protected  Action ActionLog.action
           
 

Methods in org.jbpm.graph.log that return Action
 Action ActionLog.getAction()
           
 

Methods in org.jbpm.graph.log with parameters of type Action
 void ActionLog.setAction(Action action)
           
 

Constructors in org.jbpm.graph.log with parameters of type Action
ActionLog(Action action)
           
 

Uses of Action in org.jbpm.instantiation
 

Methods in org.jbpm.instantiation with parameters of type Action
 void UserCodeInterceptor.executeAction(Action action, ExecutionContext executionContext)
           
 

Uses of Action in org.jbpm.job
 

Methods in org.jbpm.job that return Action
 Action Timer.getAction()
           
 Action ExecuteActionJob.getAction()
           
 

Methods in org.jbpm.job with parameters of type Action
 void Timer.setAction(Action action)
           
 void ExecuteActionJob.setAction(Action action)
           
 

Uses of Action in org.jbpm.jpdl.xml
 

Methods in org.jbpm.jpdl.xml that return Action
 Action JpdlXmlReader.createAction(org.dom4j.Element actionElement)
           
 Action JpdlXmlReader.readSingleAction(org.dom4j.Element nodeElement)
           
 

Methods in org.jbpm.jpdl.xml with parameters of type Action
protected  void JpdlXmlReader.addAction(GraphElement graphElement, java.lang.String eventType, Action action)
           
 void JpdlXmlReader.addUnresolvedActionReference(org.dom4j.Element actionElement, Action action)
           
 void JpdlXmlReader.readAction(org.dom4j.Element element, Action action)
           
 

Uses of Action in org.jbpm.scheduler.def
 

Subclasses of Action in org.jbpm.scheduler.def
 class CancelTimerAction
           
 class CreateTimerAction
           
 

Methods in org.jbpm.scheduler.def that return Action
 Action CreateTimerAction.getTimerAction()
           
 

Methods in org.jbpm.scheduler.def with parameters of type Action
 void CreateTimerAction.setTimerAction(Action timerAction)
           
 



Copyright © 2009 JBoss, a division of Red Hat. All Rights Reserved.