Example #1
0
 public void deleteExecutionPath() {
   if (!executionPaths.containsKey(executionPath)) {
     throw new IllegalStateException();
   }
   executionPaths.remove(executionPath);
   executionPath = LiteWorkflowInstance.getParentPath(executionPath);
 }
Example #2
0
 public String createExecutionPath(String name) {
   return LiteWorkflowInstance.createChildPath(executionPath, name);
 }
Example #3
0
 public String createFullTransition(String executionPath, String transition) {
   return LiteWorkflowInstance.createFullTransition(executionPath, transition);
 }
Example #4
0
 public String getParentExecutionPath(String executionPath) {
   return LiteWorkflowInstance.getParentPath(executionPath);
 }