Uses of Interface
org.wildfly.security.http.HttpServerAuthenticationMechanism
-
Packages that use HttpServerAuthenticationMechanism 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.http -
-
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.auth.server
Methods in org.wildfly.security.auth.server that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismSecurityIdentityServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)Deprecated.protected HttpServerAuthenticationMechanismHttpAuthenticationFactory. doCreate(String name, CallbackHandler callbackHandler, UnaryOperator<HttpServerAuthenticationMechanismFactory> factoryTransformation)Deprecated. -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.auth.server.http
Methods in org.wildfly.security.auth.server.http that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismSecurityIdentityServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)protected HttpServerAuthenticationMechanismHttpAuthenticationFactory. doCreate(String name, CallbackHandler callbackHandler, UnaryOperator<HttpServerAuthenticationMechanismFactory> factoryTransformation) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http
Fields in org.wildfly.security.http declared as HttpServerAuthenticationMechanism Modifier and Type Field Description private HttpServerAuthenticationMechanismHttpAuthenticator.AuthenticationExchange. currentMechanismFields in org.wildfly.security.http with type parameters of type HttpServerAuthenticationMechanism Modifier and Type Field Description private Supplier<List<HttpServerAuthenticationMechanism>>HttpAuthenticator.Builder. mechanismSupplierprivate Supplier<List<HttpServerAuthenticationMechanism>>HttpAuthenticator. mechanismSupplierMethods in org.wildfly.security.http that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismHttpServerAuthenticationMechanismFactory. 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.Method parameters in org.wildfly.security.http with type arguments of type HttpServerAuthenticationMechanism Modifier and Type Method Description HttpAuthenticator.BuilderHttpAuthenticator.Builder. setMechanismSupplier(Supplier<List<HttpServerAuthenticationMechanism>> mechanismSupplier)Set the supplier to use to obtain list ofHttpServerAuthenticationMechanismimplementations instances to use, based on the configured policy. -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.basic
Classes in org.wildfly.security.http.basic that implement HttpServerAuthenticationMechanism Modifier and Type Class Description (package private) classBasicAuthenticationMechanismImplementation of the HTTP BASIC authentication mechanismMethods in org.wildfly.security.http.basic that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismBasicMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.bearer
Classes in org.wildfly.security.http.bearer that implement HttpServerAuthenticationMechanism Modifier and Type Class Description (package private) classBearerTokenAuthenticationMechanismAHttpServerAuthenticationMechanismcapable to perform authentication based on a bearer token.Methods in org.wildfly.security.http.bearer that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismBearerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.cert
Classes in org.wildfly.security.http.cert that implement HttpServerAuthenticationMechanism Modifier and Type Class Description (package private) classClientCertAuthenticationMechanismThe CLIENT_CERT authentication mechanism.Methods in org.wildfly.security.http.cert that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismClientCertMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.digest
Classes in org.wildfly.security.http.digest that implement HttpServerAuthenticationMechanism Modifier and Type Class Description (package private) classDigestAuthenticationMechanismImplementation of the HTTP DIGEST authentication mechanism as defined in RFC 7616.Methods in org.wildfly.security.http.digest that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismDigestMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.external
Classes in org.wildfly.security.http.external that implement HttpServerAuthenticationMechanism Modifier and Type Class Description classExternalAuthenticationMechanismThe EXTERNAL authentication mechanism.Methods in org.wildfly.security.http.external that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismExternalMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.form
Classes in org.wildfly.security.http.form that implement HttpServerAuthenticationMechanism Modifier and Type Class Description (package private) classFormAuthenticationMechanismA generic FORM authentication mechanism which is usable in a number of different scenarios.Methods in org.wildfly.security.http.form that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismFormMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.impl
Methods in org.wildfly.security.http.impl that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismServerMechanismFactoryImpl. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)Deprecated. -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.oidc
Classes in org.wildfly.security.http.oidc that implement HttpServerAuthenticationMechanism Modifier and Type Class Description (package private) classOidcAuthenticationMechanismAnHttpServerAuthenticationMechanismto support OpenID Connect (OIDC).Methods in org.wildfly.security.http.oidc that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismOidcMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.spnego
Classes in org.wildfly.security.http.spnego that implement HttpServerAuthenticationMechanism Modifier and Type Class Description classSpnegoAuthenticationMechanismAHttpServerAuthenticationMechanismimplementation to support SPNEGO.Methods in org.wildfly.security.http.spnego that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismSpnegoMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.util
Classes in org.wildfly.security.http.util that implement HttpServerAuthenticationMechanism Modifier and Type Class Description (package private) classPrivilegedServerMechanismAHttpServerAuthenticationMechanismwith a storedAccessControlContextthat is used for all request processing calls.Fields in org.wildfly.security.http.util declared as HttpServerAuthenticationMechanism Modifier and Type Field Description private HttpServerAuthenticationMechanismPrivilegedServerMechanism. mechanismMethods in org.wildfly.security.http.util that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismAggregateServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)HttpServerAuthenticationMechanismFilterServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)Create the requestedHttpServerAuthenticationMechanismprovided it is available and allowed by the current filter.HttpServerAuthenticationMechanismPrivilegedServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)HttpServerAuthenticationMechanismPropertiesServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)Create an instance of the requestedHttpServerAuthenticationMechanismFactory.HttpServerAuthenticationMechanismSecurityProviderServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)HttpServerAuthenticationMechanismServiceLoaderServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)HttpServerAuthenticationMechanismSetMechanismInformationMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)HttpServerAuthenticationMechanismSocketAddressCallbackServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)HttpServerAuthenticationMechanismSortedServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler)Constructors in org.wildfly.security.http.util with parameters of type HttpServerAuthenticationMechanism Constructor Description PrivilegedServerMechanism(HttpServerAuthenticationMechanism mechanism, AccessControlContext accessControlContext)Construct a new instance ofPrivilegedServerMechanism. -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.http.util.sso
Methods in org.wildfly.security.http.util.sso that return HttpServerAuthenticationMechanism Modifier and Type Method Description HttpServerAuthenticationMechanismSingleSignOnServerMechanismFactory. createAuthenticationMechanism(String mechanismName, Map<String,?> properties, CallbackHandler callbackHandler) -
Uses of HttpServerAuthenticationMechanism in org.wildfly.security.mechanism.http
Classes in org.wildfly.security.mechanism.http that implement HttpServerAuthenticationMechanism Modifier and Type Class Description classUsernamePasswordAuthenticationMechanismA base class for HTTP mechanisms that operate on validation of plain text usernames and passwords.
-