Uses of Class
org.wildfly.security.http.HttpAuthenticationException
-
Packages that use HttpAuthenticationException Package Description org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.auth.server.http org.wildfly.security.http Package containing the HTTP based authentication APIs, SPIs and related classes.org.wildfly.security.http.basic org.wildfly.security.http.bearer org.wildfly.security.http.cert org.wildfly.security.http.digest org.wildfly.security.http.external org.wildfly.security.http.form org.wildfly.security.http.impl Implementation classes which do not form part of the public API.org.wildfly.security.http.oidc org.wildfly.security.http.spnego org.wildfly.security.http.util Package containing utility classes for HTTP authentication, predominantly special factory wrappers.org.wildfly.security.http.util.sso org.wildfly.security.mechanism org.wildfly.security.mechanism._private org.wildfly.security.mechanism.http -
-
Uses of HttpAuthenticationException in org.wildfly.security.auth.server
Methods in org.wildfly.security.auth.server that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
SecurityIdentityServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
Deprecated.protected HttpServerAuthenticationMechanism
HttpAuthenticationFactory. doCreate(String name, CallbackHandler callbackHandler, UnaryOperator<HttpServerAuthenticationMechanismFactory> factoryTransformation)
Deprecated. -
Uses of HttpAuthenticationException in org.wildfly.security.auth.server.http
Methods in org.wildfly.security.auth.server.http that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
SecurityIdentityServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
protected HttpServerAuthenticationMechanism
HttpAuthenticationFactory. doCreate(String name, CallbackHandler callbackHandler, UnaryOperator<HttpServerAuthenticationMechanismFactory> factoryTransformation)
-
Uses of HttpAuthenticationException in org.wildfly.security.http
Methods in org.wildfly.security.http that return HttpAuthenticationException Modifier and Type Method Description HttpAuthenticationException
ElytronMessages. httpAuthenticationFailedEvaluatingRequest()
HttpAuthenticationException
ElytronMessages. httpAuthenticationNoMechanisms()
HttpAuthenticationException
ElytronMessages. httpAuthenticationNoSuccessfulResponder()
Methods in org.wildfly.security.http with parameters of type HttpAuthenticationException Modifier and Type Method Description void
HttpAuthenticator.AuthenticationExchange. badRequest(HttpAuthenticationException failure, HttpServerMechanismsResponder responder)
void
HttpExchangeSpi. badRequest(HttpAuthenticationException error, String mechanismName)
Notification that authentication has failed for a specific mechanism due to being a bad request.default void
HttpServerRequest. badRequest(HttpAuthenticationException failure)
Notification to indicate that this was a bad request.void
HttpServerRequest. badRequest(HttpAuthenticationException failure, HttpServerMechanismsResponder responder)
Notification to indicate that this was a bad request.void
HttpServerRequestWrapper. badRequest(HttpAuthenticationException failure, HttpServerMechanismsResponder responder)
Methods in org.wildfly.security.http that throw HttpAuthenticationException Modifier and Type Method Description boolean
HttpAuthenticator. authenticate()
Perform authentication for the request.private boolean
HttpAuthenticator.AuthenticationExchange. authenticate()
HttpServerAuthenticationMechanism
HttpServerAuthenticationMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
Obtain an instance of the authentication mechanism requested provided this is allowed by any policy specified within the supplied properties.void
HttpServerAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
Evaluate the current request and attempt to authenticate if appropriate.void
HttpServerMechanismsResponder. sendResponse(HttpServerResponse response)
Send any required response to the client. -
Uses of HttpAuthenticationException in org.wildfly.security.http.basic
Methods in org.wildfly.security.http.basic that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
BasicMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
BasicAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.bearer
Methods in org.wildfly.security.http.bearer that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
BearerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
BearerTokenAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
private String
BearerTokenAuthenticationMechanism. getRealmName()
private void
BearerTokenAuthenticationMechanism. handleCallback(Callback callback)
private void
BearerTokenAuthenticationMechanism. unauthorizedResponse(HttpServerResponse response)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.cert
Methods in org.wildfly.security.http.cert that throw HttpAuthenticationException Modifier and Type Method Description private boolean
ClientCertAuthenticationMechanism. attemptAuthentication(HttpServerRequest request, Function<SecurityDomain,IdentityCache> cacheFunction)
private boolean
ClientCertAuthenticationMechanism. attemptReAuthentication(HttpServerRequest request, Function<SecurityDomain,IdentityCache> cacheFunction)
HttpServerAuthenticationMechanism
ClientCertMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
ClientCertAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
private void
ClientCertAuthenticationMechanism. fail(HttpServerRequest request)
private boolean
ClientCertAuthenticationMechanism. succeed(HttpServerRequest request)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.digest
Methods in org.wildfly.security.http.digest that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
DigestMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
DigestAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
private void
DigestAuthenticationMechanism. prepareResponse(String realmName, HttpServerResponse response, boolean stale)
private String
DigestAuthenticationMechanism. selectRealm()
Select the realm which should be sent to the client in the challenge.private void
DigestAuthenticationMechanism. validateResponse(HashMap<String,byte[]> responseTokens, HttpServerRequest request)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.external
Methods in org.wildfly.security.http.external that throw HttpAuthenticationException Modifier and Type Method Description private boolean
ExternalAuthenticationMechanism. authorize(String username)
HttpServerAuthenticationMechanism
ExternalMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
ExternalAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
private void
ExternalAuthenticationMechanism. fail(HttpServerRequest request)
private void
ExternalAuthenticationMechanism. succeed(HttpServerRequest request)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.form
Methods in org.wildfly.security.http.form that throw HttpAuthenticationException Modifier and Type Method Description private void
FormAuthenticationMechanism. attemptAuthentication(HttpServerRequest request)
private boolean
FormAuthenticationMechanism. attemptReAuthentication(HttpServerRequest request)
private boolean
FormAuthenticationMechanism. authorize(String username, HttpServerRequest request, IdentityCache identityCache)
HttpServerAuthenticationMechanism
FormMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
FormAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
private void
FormAuthenticationMechanism. sendLogin(HttpServerRequest request, HttpServerResponse response)
private void
FormAuthenticationMechanism. sendPage(String page, HttpServerRequest request, HttpServerResponse response)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.impl
Methods in org.wildfly.security.http.impl that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
ServerMechanismFactoryImpl. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
Deprecated. -
Uses of HttpAuthenticationException in org.wildfly.security.http.oidc
Methods in org.wildfly.security.http.oidc that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
OidcMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
OidcAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.spnego
Methods in org.wildfly.security.http.spnego that throw HttpAuthenticationException Modifier and Type Method Description private boolean
SpnegoAuthenticationMechanism. attemptReAuthentication(IdentityCache identityCache, HttpServerRequest request)
private boolean
SpnegoAuthenticationMechanism. authorizeSrcName(GSSContext gssContext, IdentityCache identityCache)
HttpServerAuthenticationMechanism
SpnegoMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
SpnegoAuthenticationMechanism. evaluateRequest(HttpServerRequest request)
private HttpScope
SpnegoAuthenticationMechanism. getStorageScope(HttpServerRequest request)
private void
SpnegoAuthenticationMechanism. handleCallback(Callback callback)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.util
Methods in org.wildfly.security.http.util with parameters of type HttpAuthenticationException Modifier and Type Method Description void
PrivilegedServerMechanism.HttpServerRequestWrapper. badRequest(HttpAuthenticationException failure, HttpServerMechanismsResponder responder)
Methods in org.wildfly.security.http.util that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
AggregateServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
HttpServerAuthenticationMechanism
FilterServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
Create the requestedHttpServerAuthenticationMechanism
provided it is available and allowed by the current filter.HttpServerAuthenticationMechanism
PrivilegedServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
HttpServerAuthenticationMechanism
PropertiesServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
Create an instance of the requestedHttpServerAuthenticationMechanismFactory
.HttpServerAuthenticationMechanism
SecurityProviderServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
HttpServerAuthenticationMechanism
ServiceLoaderServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
HttpServerAuthenticationMechanism
SetMechanismInformationMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
HttpServerAuthenticationMechanism
SocketAddressCallbackServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
HttpServerAuthenticationMechanism
SortedServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
void
PrivilegedServerMechanism. evaluateRequest(HttpServerRequest request)
-
Uses of HttpAuthenticationException in org.wildfly.security.http.util.sso
Methods in org.wildfly.security.http.util.sso that return HttpAuthenticationException Modifier and Type Method Description HttpAuthenticationException
ElytronMessages. httpServerAuthenticationMechanismNotFound(String mechanismName)
Methods in org.wildfly.security.http.util.sso with parameters of type HttpAuthenticationException Modifier and Type Method Description void
ProgrammaticSingleSignOnCache.SSOHttpServerRequest. badRequest(HttpAuthenticationException failure, HttpServerMechanismsResponder responder)
Methods in org.wildfly.security.http.util.sso that throw HttpAuthenticationException Modifier and Type Method Description HttpServerAuthenticationMechanism
SingleSignOnServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)
-
Uses of HttpAuthenticationException in org.wildfly.security.mechanism
Methods in org.wildfly.security.mechanism that return HttpAuthenticationException Modifier and Type Method Description HttpAuthenticationException
AuthenticationMechanismException. toHttpAuthenticationException()
Convert this exception to an HTTP exception with the same message and stack trace. -
Uses of HttpAuthenticationException in org.wildfly.security.mechanism._private
Methods in org.wildfly.security.mechanism._private that return HttpAuthenticationException Modifier and Type Method Description HttpAuthenticationException
ElytronMessages. digestMechanismInvalidRealm(String realm)
HttpAuthenticationException
ElytronMessages. digestMechanismRequireRealm()
HttpAuthenticationException
ElytronMessages. invalidNonceCount(int nonceCount)
-
Uses of HttpAuthenticationException in org.wildfly.security.mechanism.http
Methods in org.wildfly.security.mechanism.http that throw HttpAuthenticationException Modifier and Type Method Description protected boolean
UsernamePasswordAuthenticationMechanism. authenticate(String realmName, String username, char[] password)
protected boolean
UsernamePasswordAuthenticationMechanism. authorize(String username)
-