View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition; 2 3 import org.smartcomps.twister.engine.priv.core.definition.Activity; 4 import org.smartcomps.twister.engine.priv.core.dynamic.ExecutionContext; 5 import org.smartcomps.twister.engine.exception.EngineException; 6 7 import java.util.Map; 8 9 /*** 10 * Supertye for all basic activity meaning an activity that doesn't 11 * contain any other activity. It's therefore a terminal activity 12 * and not a container that triggers an action from the workflow 13 * engine. 14 */ 15 public interface BasicActivity extends Activity { 16 17 public ExecutionContext execute(String correlationSetName, Map correlation) throws EngineException; 18 19 }

This page was automatically generated by Maven