Package net.officefloor.web.spi.security
Interface HttpSecurityFlowMetaData<F extends java.lang.Enum<F>>
-
- All Known Implementing Classes:
HttpSecurityFlowMetaDataImpl
public interface HttpSecurityFlowMetaData<F extends java.lang.Enum<F>>Describes aFlowrequired by theHttpSecuritySource.- 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 the applicationFlowto instigate.java.lang.StringgetLabel()Provides a descriptive name for thisFlow.
-
-
-
Method Detail
-
getKey
F getKey()
Obtains theEnumkey identifying the applicationFlowto instigate.- Returns:
Enumkey identifying the applicationFlowto instigate.
-
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.
-
-