站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss JBPM 3.0.4 API 英文版文档

RuntimeAction (jbpm-3.0.4) - JBoss JBPM 3.0.4 API 英文版文档


org.jbpm.graph.exe
Class RuntimeAction

java.lang.Object
  extended byorg.jbpm.graph.exe.RuntimeAction
All Implemented Interfaces:
java.io.Serializable

public class RuntimeAction
extends java.lang.Object
implements java.io.Serializable

is an action that can be added at runtime to the execution of one process instance.

See Also:
Serialized Form

Field Summary
protected  Action action
           
protected  java.lang.String eventType
           
protected  GraphElement graphElement
           
protected  ProcessInstance processInstance
           
 
Constructor Summary
RuntimeAction()
           
RuntimeAction(Event event, Action action)
          creates a runtime action.
RuntimeAction(GraphElement graphElement, java.lang.String eventType, Action action)
           
 
Method Summary
 Action getAction()
           
 java.lang.String getEventType()
           
 GraphElement getGraphElement()
           
 long getId()
           
 ProcessInstance getProcessInstance()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

processInstance

protected ProcessInstance processInstance

graphElement

protected GraphElement graphElement

eventType

protected java.lang.String eventType

action

protected Action action
Constructor Detail

RuntimeAction

public RuntimeAction()

RuntimeAction

public RuntimeAction(Event event,
                     Action action)
creates a runtime action. Look up the event with GraphElement.getEvent(String) and the action with ProcessDefinition.getAction(String). You can only lookup named actions easily.


RuntimeAction

public RuntimeAction(GraphElement graphElement,
                     java.lang.String eventType,
                     Action action)
Method Detail

getId

public long getId()

getProcessInstance

public ProcessInstance getProcessInstance()

getAction

public Action getAction()

getEventType

public java.lang.String getEventType()

getGraphElement

public GraphElement getGraphElement()


Version : jbpm-3.0.4