Interface FunctionAuthenticateContext<AC extends java.io.Serializable,C>
-
- All Superinterfaces:
AccessControlListener<AC>
public interface FunctionAuthenticateContext<AC extends java.io.Serializable,C> extends AccessControlListener<AC>
ManagedFunction
authentication context.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ServerHttpConnection
getConnection()
Obtains theServerHttpConnection
to be secured.C
getCredentials()
Obtains the credentials.HttpRequestState
getRequestState()
Obtains theHttpRequestState
.HttpSession
getSession()
Obtains theHttpSession
.-
Methods inherited from interface net.officefloor.web.spi.security.AccessControlListener
accessControlChange
-
-
-
-
Method Detail
-
getCredentials
C getCredentials()
Obtains the credentials.- Returns:
- Credentials. May be
null
if no credentials are available.
-
getConnection
ServerHttpConnection getConnection()
Obtains theServerHttpConnection
to be secured.- Returns:
ServerHttpConnection
.
-
getSession
HttpSession getSession()
Obtains theHttpSession
.- Returns:
HttpSession
.
-
getRequestState
HttpRequestState getRequestState()
Obtains theHttpRequestState
.- Returns:
HttpRequestState
.
-
-