|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Transition | |
|---|---|
| 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.graph.node | contains basic node implementations. |
| org.jbpm.jpdl.xml | jpdl xml parsing. |
| org.jbpm.taskmgmt.exe | |
| Uses of Transition in org.jbpm.graph.def |
|---|
| Fields in org.jbpm.graph.def with type parameters of type Transition | |
|---|---|
protected java.util.Set<Transition> |
Node.arrivingTransitions
|
protected java.util.List<Transition> |
Node.leavingTransitions
|
| Methods in org.jbpm.graph.def that return Transition | |
|---|---|
Transition |
Node.addArrivingTransition(Transition arrivingTransition)
add a bidirection relation between this node and the given arriving transition. |
Transition |
Node.addLeavingTransition(Transition leavingTransition)
creates a bidirection relation between this node and the given leaving transition. |
Transition |
Node.getDefaultLeavingTransition()
is the default leaving transition. |
Transition |
Node.getLeavingTransition(java.lang.String transitionName)
retrieves a leaving transition by name. |
| Methods in org.jbpm.graph.def that return types with arguments of type Transition | |
|---|---|
java.util.Set<Transition> |
Node.getArrivingTransitions()
are the arriving transitions. |
java.util.List<Transition> |
Node.getLeavingTransitions()
|
java.util.List<Transition> |
Node.getLeavingTransitionsList()
|
java.util.Map<java.lang.String,Transition> |
Node.getLeavingTransitionsMap()
are the leaving Transitions, mapped by their name (java.lang.String). |
| Methods in org.jbpm.graph.def with parameters of type Transition | |
|---|---|
Transition |
Node.addArrivingTransition(Transition arrivingTransition)
add a bidirection relation between this node and the given arriving transition. |
Transition |
Node.addLeavingTransition(Transition leavingTransition)
creates a bidirection relation between this node and the given leaving transition. |
void |
Node.leave(ExecutionContext executionContext,
Transition transition)
called by the implementation of this node to continue execution over the given transition. |
void |
Node.removeArrivingTransition(Transition arrivingTransition)
removes the bidirection relation between this node and the given arriving transition. |
void |
Node.removeLeavingTransition(Transition leavingTransition)
removes the bidirection relation between this node and the given leaving transition. |
| Uses of Transition in org.jbpm.graph.exe |
|---|
| Fields in org.jbpm.graph.exe declared as Transition | |
|---|---|
protected Transition |
ExecutionContext.transition
|
| Methods in org.jbpm.graph.exe that return Transition | |
|---|---|
Transition |
ExecutionContext.getTransition()
|
| Methods in org.jbpm.graph.exe that return types with arguments of type Transition | |
|---|---|
java.util.Set<Transition> |
Token.getAvailableTransitions()
a set of all the leaving transitions on the current node for which the condition expression resolves to true. |
| Methods in org.jbpm.graph.exe with parameters of type Transition | |
|---|---|
void |
ExecutionContext.leaveNode(Transition transition)
leave this node over the given transition. |
void |
ExecutionContext.setTransition(Transition transition)
|
void |
Token.signal(Transition transition)
provides a signal to the token. |
void |
ProcessInstance.signal(Transition transition)
instructs the main path of execution to continue by taking the specified transition on the current node. |
| Uses of Transition in org.jbpm.graph.log |
|---|
| Fields in org.jbpm.graph.log declared as Transition | |
|---|---|
protected Transition |
SignalLog.transition
|
protected Transition |
TransitionLog.transition
|
| Methods in org.jbpm.graph.log that return Transition | |
|---|---|
Transition |
SignalLog.getTransition()
|
Transition |
TransitionLog.getTransition()
|
| Constructors in org.jbpm.graph.log with parameters of type Transition | |
|---|---|
SignalLog(Transition transition)
|
|
TransitionLog(Transition transition,
Node source)
|
|
| Uses of Transition in org.jbpm.graph.node |
|---|
| Methods in org.jbpm.graph.node that return Transition | |
|---|---|
Transition |
StartState.addArrivingTransition(Transition t)
|
Transition |
EndState.addLeavingTransition(Transition t)
|
Transition |
InterleaveEnd.getBack()
|
Transition |
InterleaveEnd.getDone()
|
| Methods in org.jbpm.graph.node with parameters of type Transition | |
|---|---|
Transition |
StartState.addArrivingTransition(Transition t)
|
Transition |
EndState.addLeavingTransition(Transition t)
|
void |
TaskNode.leave(ExecutionContext executionContext,
Transition transition)
|
void |
ProcessState.leave(ExecutionContext executionContext,
Transition transition)
|
void |
StartState.leave(ExecutionContext executionContext,
Transition transition)
|
void |
InterleaveEnd.setBack(Transition back)
|
void |
InterleaveEnd.setDone(Transition done)
|
| Uses of Transition in org.jbpm.jpdl.xml |
|---|
| Methods in org.jbpm.jpdl.xml that return Transition | |
|---|---|
Transition |
JpdlXmlReader.resolveTransitionDestination(org.dom4j.Element transitionElement,
Node node)
|
| Uses of Transition in org.jbpm.taskmgmt.exe |
|---|
| Methods in org.jbpm.taskmgmt.exe that return types with arguments of type Transition | |
|---|---|
java.util.List<Transition> |
TaskInstance.getAvailableTransitions()
is the list of transitions that can be used in the end method and it is null in case this is not the last task instance. |
| Methods in org.jbpm.taskmgmt.exe with parameters of type Transition | |
|---|---|
void |
TaskInstance.cancel(Transition transition)
cancels this task, takes the specified transition. |
void |
TaskInstance.end(Transition transition)
marks this task as done and specifies a transition leaving the task-node for the case that the completion of this task instances triggers a signal on the token. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||