All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ee.telekom.workflow.api.DslSplit Maven / Gradle / Ivy

Go to download

Telekom-workflow-engine API interface (DSL) for writing your workflow definitions and plugins.

There is a newer version: 1.6.3
Show newest version
package ee.telekom.workflow.api;

/**
 * DSL for workflow definitions.
 *
 * @author Erko Hansar
 * @author Christian Klock
 *
 * @see WorkflowDefinition
 */
public interface DslSplit {

    /**
     * Add a branch (parallel execution flow) into the active split.
     */
    DslBranchBlock branch();

    /**
     * Add a conditional branch (parallel execution flow) into the active split. Executed only if the condition evaluates to true.
     * 
     * @param condition expression language condition ("EL_EXPRESSION")
     */
    DslBranchBlock branch( String condition );

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy