Package org.wildfly.security.http.spnego
Class SpnegoAuthenticationMechanism
- java.lang.Object
-
- org.wildfly.security.http.spnego.SpnegoAuthenticationMechanism
-
- All Implemented Interfaces:
HttpServerAuthenticationMechanism
public final class SpnegoAuthenticationMechanism extends Object implements HttpServerAuthenticationMechanism
AHttpServerAuthenticationMechanismimplementation to support SPNEGO.- Author:
- Darran Lofthouse
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidevaluateRequest(HttpServerRequest request)Evaluate the current request and attempt to authenticate if appropriate.StringgetMechanismName()Get the name of this mechanism, where appropriate this should be the IANA registered name.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.wildfly.security.http.HttpServerAuthenticationMechanism
dispose, getNegotiatedProperty, getNegotiationProperty
-
-
-
-
Method Detail
-
getMechanismName
public String getMechanismName()
Description copied from interface:HttpServerAuthenticationMechanismGet the name of this mechanism, where appropriate this should be the IANA registered name.- Specified by:
getMechanismNamein interfaceHttpServerAuthenticationMechanism- Returns:
- the name of the mechanism.
-
evaluateRequest
public void evaluateRequest(HttpServerRequest request) throws HttpAuthenticationException
Description copied from interface:HttpServerAuthenticationMechanismEvaluate the current request and attempt to authenticate if appropriate. The mechanism should call the appropriate callback methods on the {link HttpServerResponse} to both indicate the outcome of the evaluation and to register anyHttpServerMechanismsResponderas required.- Specified by:
evaluateRequestin interfaceHttpServerAuthenticationMechanism- Parameters:
request- representation of the HTTP request.- Throws:
HttpAuthenticationException- if there is an internal failure handling the authentication.
-
-