Interface ProcedureFlowType
-
- All Known Implementing Classes:
ProcedureFlowTypeImpl
public interface ProcedureFlowType
- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>
getArgumentType()
java.lang.String
getFlowName()
Obtains the name for theProcedureFlowType
.
-
-
-
Method Detail
-
getFlowName
java.lang.String getFlowName()
Obtains the name for theProcedureFlowType
.- Returns:
- Name for the
ProcedureFlowType
.
-
getArgumentType
java.lang.Class<?> getArgumentType()
- Returns:
- Type of argument passed to
Flow
. May benull
to indicate no argument.
-
-