07-07-2014 09:18 AM
public class PerformOutgoingBehavior implements Command<Boolean>, Serializable {
private final Execution execution;
public PerformOutgoingBehavior(@Nonnull Execution execution) {
super();
this.execution = execution;
}
@Override
public Boolean execute(CommandContext commandContext) {
ExecutionEntityManager executionManager = commandContext.getExecutionEntityManager();
ExecutionEntity executionEntity = executionManager.findExecutionById(execution.getId());
new BpmnActivityBehavior().performDefaultOutgoingBehavior(executionEntity)
return true;
}
}
07-07-2014 09:28 AM
07-07-2014 11:33 AM
07-09-2014 11:58 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.