Class BasicMechanismFactory
- java.lang.Object
-
- org.wildfly.security.http.sfbasic.BasicMechanismFactory
-
- All Implemented Interfaces:
HttpServerAuthenticationMechanismFactory
@MetaInfServices(org.wildfly.security.http.HttpServerAuthenticationMechanismFactory.class) public class BasicMechanismFactory extends Object implements HttpServerAuthenticationMechanismFactory
AHttpServerAuthenticationMechanismFactoryimplementation for the Basic HTTP authentication mechanism.- Author:
- Darran Lofthouse
-
-
Field Summary
Fields Modifier and Type Field Description static StringCOOKIE_NAMEstatic StringSTATEFUL_BASIC_NAME
-
Constructor Summary
Constructors Constructor Description BasicMechanismFactory()BasicMechanismFactory(Provider provider)BasicMechanismFactory(Provider... providers)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HttpServerAuthenticationMechanismcreateAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)String[]getMechanismNames(Map<String,?> properties)voidshutdown()
-
-
-
Field Detail
-
STATEFUL_BASIC_NAME
public static final String STATEFUL_BASIC_NAME
- See Also:
- Constant Field Values
-
COOKIE_NAME
public static final String COOKIE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMechanismNames
public String[] getMechanismNames(Map<String,?> properties)
- Specified by:
getMechanismNamesin interfaceHttpServerAuthenticationMechanismFactory- See Also:
HttpServerAuthenticationMechanismFactory.getMechanismNames(java.util.Map)
-
createAuthenticationMechanism
public HttpServerAuthenticationMechanism createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) throws HttpAuthenticationException
- Specified by:
createAuthenticationMechanismin interfaceHttpServerAuthenticationMechanismFactory- Throws:
HttpAuthenticationException
-
shutdown
public void shutdown()
- Specified by:
shutdownin interfaceHttpServerAuthenticationMechanismFactory
-
-