Package org.jbpm.taskinstance

Examples of org.jbpm.taskinstance.CustomTaskInstance.start()


    CustomTaskInstance taskInstance = null;
    long taskInstanceId = 0;
    while (taskIterator.hasNext()) {
      taskInstance = (CustomTaskInstance) taskIterator.next();
      taskInstanceId = taskInstance.getId();
      taskInstance.start();
      taskInstance.setActorId("tom");
      String customId = taskInstance.getCustomId();
      assertEquals("abc", customId);
      System.out.println(taskInstanceId);
    }
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.