ee.telekom.workflow.api.DslDoWhileBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workflow-api Show documentation
Show all versions of workflow-api Show documentation
Telekom-workflow-engine API interface (DSL) for writing your workflow definitions and plugins.
package ee.telekom.workflow.api;
/**
* DSL for workflow definitions.
*
* @author Erko Hansar
* @author Christian Klock
*
* @see WorkflowDefinition
*/
public interface DslDoWhileBlock extends DslBlock>{
/**
* Block end tag, checks the condition result, if true, then executes the block content again, if false, then ends the block.
*
* @param id node id
* @param condition expression language condition ("EL_EXPRESSION")
*/
Level doWhile( int id, String condition );
}