11-25-2015 09:33 AM
———————-
| |
\/ |
Start-> UserTask1 - >UserTask2 -> <Exclusive> ->End
new WorkflowDefinition().name("TestFlow")
.description("This is a test workflow").addHumanStep("UserTask1","UserTask1", "")
.addHumanStep("UserTask2","UserTask2", "").inChoice().inList()
.addCondition("isRejeted", "", "").addHumanStep("UserTask1", "UserTask1","").endList()
.endChoice();
HumanStepDefinition userTask1 = new HumanStepDefinition();
checkerTaskDef.setId("UserTask1");
checkerTaskDef.setName("UserTask1");
ChoiceStepsDefinition chDef = workflowDefinition.inChoice();
ListConditionStepDefinition lcdef = chDef.inList();
lcdef.addCondition("isRejeted", "", "").addStep(userTask1);
11-25-2015 01:11 PM
11-25-2015 01:32 PM
11-26-2015 12:47 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.