Package io.undertow.security.api
Interface SecurityContextFactory
- All Known Implementing Classes:
SecurityContextFactoryImpl
Deprecated.
Instead extend AbstractSecurityContextAssociationHandler to provide alternative contexts.
Interface that must be implemented by factories of SecurityContext
instances.
- Author:
- Stefan Guilhen
-
Method Summary
Modifier and TypeMethodDescriptioncreateSecurityContext
(HttpServerExchange exchange, AuthenticationMode mode, IdentityManager identityManager, String programmaticMechName) Deprecated.Instantiates and returns aSecurityContext
using the specified parameters.
-
Method Details
-
createSecurityContext
SecurityContext createSecurityContext(HttpServerExchange exchange, AuthenticationMode mode, IdentityManager identityManager, String programmaticMechName) Deprecated.Instantiates and returns a
SecurityContext
using the specified parameters.- Parameters:
exchange
- theHttpServerExchange
instance.mode
- theAuthenticationMode
.identityManager
- theIdentityManager
instance.programmaticMechName
- aString
representing the programmatic mechanism name. Can be null.- Returns:
- the constructed
SecurityContext
instance.
-