Examples of MBpm


Examples of de.mhus.lib.bpm.MBpm

public class BpmTest extends TestCase {

  public void testBpm() throws Exception {
    IConfig config = ConfigUtil.loadXmlForClass(BpmTest.class);
   
    MBpm bpm = MBpm.createBpm(config);
    bpm.setAsDefault();
    assertNotNull(bpm);
   
    BpmWorkflow testWorkflow = bpm.getWorkflow("test01");
    assertNotNull(testWorkflow);
   
    BpmInstance testInstance = testWorkflow.start(new AttributeMap("v01","value01"));
    assertNotNull(testInstance);
   
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.