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 void
setNextFunction(java.lang.String functionName, java.lang.Class<?> argumentType)
Specifies the nextManagedFunction
to 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 nextManagedFunction
to be executed.- Parameters:
functionName
- Name of the nextManagedFunction
.argumentType
- Type of argument passed to the nextManagedFunction
. May benull
to indicate no argument.
-
-