Class ProcedureFlowTypeImpl
- java.lang.Object
-
- net.officefloor.activity.impl.procedure.ProcedureFlowTypeImpl
-
- All Implemented Interfaces:
ProcedureFlowType
public class ProcedureFlowTypeImpl extends java.lang.Object implements ProcedureFlowType
ProcedureFlowTypeimplementation.- Author:
- Daniel Sagenschneider
-
-
Constructor Summary
Constructors Constructor Description ProcedureFlowTypeImpl(java.lang.String flowName, java.lang.Class<?> argumentType)Instantiate.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<?>getArgumentType()java.lang.StringgetFlowName()Obtains the name for theProcedureFlowType.
-
-
-
Constructor Detail
-
ProcedureFlowTypeImpl
public ProcedureFlowTypeImpl(java.lang.String flowName, java.lang.Class<?> argumentType)Instantiate.- Parameters:
flowName- Name of theFlow.argumentType- Argument type.
-
-
Method Detail
-
getFlowName
public java.lang.String getFlowName()
Description copied from interface:ProcedureFlowTypeObtains the name for theProcedureFlowType.- Specified by:
getFlowNamein interfaceProcedureFlowType- Returns:
- Name for the
ProcedureFlowType.
-
getArgumentType
public java.lang.Class<?> getArgumentType()
Description copied from interface:ProcedureFlowType- Specified by:
getArgumentTypein interfaceProcedureFlowType- Returns:
- Type of argument passed to
Flow. May benullto indicate no argument.
-
-