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 aFlow
required by theHttpSecuritySource
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<?>
getArgumentType()
Obtains theClass
of the argument that is passed to theFlow
.F
getKey()
Obtains theEnum
key identifying the applicationFlow
to instigate.java.lang.String
getLabel()
Provides a descriptive name for thisFlow
.
-
-
-
Method Detail
-
getKey
F getKey()
Obtains theEnum
key identifying the applicationFlow
to instigate.- Returns:
Enum
key identifying the applicationFlow
to instigate.
-
getArgumentType
java.lang.Class<?> getArgumentType()
Obtains the
Class
of the argument that is passed to theFlow
.This may be
null
to 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
.
-
-