Package net.officefloor.frame.api.build
Interface FlowBuilder<F extends java.lang.Enum<F>>
-
- All Superinterfaces:
FunctionBuilder<F>
- All Known Subinterfaces:
ManagedFunctionBuilder<O,F>,ManagedObjectFunctionBuilder<O,F>
- All Known Implementing Classes:
ManagedFunctionBuilderImpl
public interface FlowBuilder<F extends java.lang.Enum<F>> extends FunctionBuilder<F>
- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetNextFunction(java.lang.String functionName, java.lang.Class<?> argumentType)Specifies the nextManagedFunctionto be executed.-
Methods inherited from interface net.officefloor.frame.api.build.FunctionBuilder
addEscalation, linkFlow, linkFlow, setResponsibleTeam
-
-
-
-
Method Detail
-
setNextFunction
void setNextFunction(java.lang.String functionName, java.lang.Class<?> argumentType)Specifies the nextManagedFunctionto be executed.- Parameters:
functionName- Name of the nextManagedFunction.argumentType- Type of argument passed to the nextManagedFunction. May benullto indicate no argument.
-
-