Uses of Interface
org.jbpm.api.model.Transition

Packages that use Transition
org.jbpm.api.activity interfaces for implementing activities, which represent the runtime behaviour of activities. 
org.jbpm.api.listener interfaces for implementing event listeners, which represent runtime behaviour that can be associated as listeners to process events. 
org.jbpm.api.model common model base classes for the client, activity and event listener API's 
 

Uses of Transition in org.jbpm.api.activity
 

Methods in org.jbpm.api.activity that return Transition
 Transition ActivityExecution.getTransition()
          the current transition indicating the position in the process definition graph.
 

Methods in org.jbpm.api.activity with parameters of type Transition
 void ActivityExecution.take(Transition transition)
          takes the given outgoing transition.
 void ActivityExecution.take(Transition transition, Execution execution)
          let's the given execution take the transition.
 

Uses of Transition in org.jbpm.api.listener
 

Methods in org.jbpm.api.listener that return Transition
 Transition EventListenerExecution.getTransition()
          the current transition indicating the position in the process definition graph.
 

Uses of Transition in org.jbpm.api.model
 

Methods in org.jbpm.api.model that return Transition
 Transition Activity.findOutgoingTransition(java.lang.String transitionName)
          searches for the given transitionName in this activity and then up the parent chain.
 Transition Activity.getDefaultOutgoingTransition()
          the default outgoing transition.
 Transition Activity.getOutgoingTransition(java.lang.String transitionName)
          the first leaving transition with the given name or null of no such leaving transition exists.
 

Methods in org.jbpm.api.model that return types with arguments of type Transition
 java.util.List<Transition> Activity.getIncomingTransitions()
          the list of arriving transitions.
 java.util.List<Transition> Activity.getOutgoingTransitions()
          the list of outgoing transitions.
 java.util.Map<java.lang.String,Transition> Activity.getOutgoingTransitionsMap()
          the leaving transitions, keyed by transition name.
 



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