Package de.mhus.lib.bpm

Examples of de.mhus.lib.bpm.BpmWorkflow.start()


    assertNotNull(bpm);
   
    BpmWorkflow testWorkflow = bpm.getWorkflow("test01");
    assertNotNull(testWorkflow);
   
    BpmInstance testInstance = testWorkflow.start(new AttributeMap("v01","value01"));
    assertNotNull(testInstance);
   
    //start
    System.out.println(testInstance.getCurrentActivities());
    System.out.println("v01=" + testInstance.getContext().getString("v01", null));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.