Package de.mhus.lib.bpm

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

Related Classes of de.mhus.lib.bpm.MBpm

Copyright © 2018 www.massapicom. 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.