Execution Context Variables
----------------------------
Key: JBPM-1335
URL:
http://jira.jboss.com/jira/browse/JBPM-1335
Project: JBoss jBPM
Issue Type: Task
Security Level: Public (Everyone can see)
Components: API
Reporter: Thomas Diesler
Assigned To: Thomas Diesler
Fix For: API 1.0.0.Alpha
Support a basic sequence like this
<process-definition>
<start-state>
<transition to='stateA' />
</start-state>
<state name='stateA'>
<transition to='end' />
</state>
<end-state name='end' />
</process-definition>
public void testBasicSequence() throws Exception {
// Create a ProcessDefinition through the ProcessDefinitionManager
ProcessDefinitionManager pdm =
ProcessDefinitionManager.locateProcessDefinitionManager();
ProcessDefinition pd = pdm.createProcessDefinition(jpdl);
// Create an Execution through the ProcessDefinition
Execution ex = pd.createExecution();
assertEquals(pd.getStartNode(), ex.getNode());
// Signal the execution
ex.signal();
assertEquals(pd.findNode("stateA"), ex.getNode());
// Signal the execution
ex.signal();
assertEquals(pd.findNode("end"), ex.getNode());
assertEquals(pd.getEndNodes().iterator().next(), ex.getNode());
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira