Class ProcedureFlowTypeImpl
- java.lang.Object
-
- net.officefloor.activity.impl.procedure.ProcedureFlowTypeImpl
-
- All Implemented Interfaces:
ProcedureFlowType
public class ProcedureFlowTypeImpl extends java.lang.Object implements ProcedureFlowType
ProcedureFlowType
implementation.- 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.String
getFlowName()
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:ProcedureFlowType
Obtains the name for theProcedureFlowType
.- Specified by:
getFlowName
in interfaceProcedureFlowType
- Returns:
- Name for the
ProcedureFlowType
.
-
getArgumentType
public java.lang.Class<?> getArgumentType()
Description copied from interface:ProcedureFlowType
- Specified by:
getArgumentType
in interfaceProcedureFlowType
- Returns:
- Type of argument passed to
Flow
. May benull
to indicate no argument.
-
-