use of org.kie.workbench.common.stunner.bpmn.definition.property.event.escalation.EscalationRef in project kie-wb-common by kiegroup.
the class ProcessEscalationRefProviderTest method mockStartEscalationEventNode.
private Node mockStartEscalationEventNode(String escalationRefValue) {
StartEscalationEvent event = new StartEscalationEvent();
event.setExecutionSet(new InterruptingEscalationEventExecutionSet(new IsInterrupting(true), new SLADueDate(), new EscalationRef(escalationRefValue)));
return mockNode(event);
}
use of org.kie.workbench.common.stunner.bpmn.definition.property.event.escalation.EscalationRef in project kie-wb-common by kiegroup.
the class ProcessEscalationRefProviderTest method mockEndEscalationEventNode.
private Node mockEndEscalationEventNode(String escalationRefValue) {
EndEscalationEvent event = new EndEscalationEvent();
event.setExecutionSet(new EscalationEventExecutionSet(new EscalationRef(escalationRefValue)));
return mockNode(event);
}
Aggregations