Interface AdministrationFlowMetaData<F extends java.lang.Enum<F>>
-
public interface AdministrationFlowMetaData<F extends java.lang.Enum<F>>Describes aFlowrequired by theAdministration.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>getArgumentType()Obtains theClassof the argument that is passed to theFlow.FgetKey()Obtains theEnumkey identifying thisFlow.java.lang.StringgetLabel()Provides a descriptive name for thisFlow.
-
-
-
Method Detail
-
getKey
F getKey()
Obtains theEnumkey identifying thisFlow. IfnullthenFlowwill be referenced by this instance's index in the array returned fromAdministrationMetaData.- Returns:
Enumkey identifying theFlowornullindicating identified by an index.
-
getArgumentType
java.lang.Class<?> getArgumentType()
Obtains the
Classof the argument that is passed to theFlow.This may be
nullto indicate no argument is passed.- Returns:
- Type of the argument that is passed to the
Flow.
-
getLabel
java.lang.String getLabel()
- Returns:
- Descriptive name for this
Flow.
-
-