Uses of Interface
org.wildfly.security.http.HttpServerAuthenticationMechanismFactory
-
Packages that use HttpServerAuthenticationMechanismFactory Package Description org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.auth.server.http 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.spnego org.wildfly.security.http.util Package containing utility classes for HTTP authentication, predominantly special factory wrappers.org.wildfly.security.http.util.sso -
-
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.auth.server
Methods in org.wildfly.security.auth.server with parameters of type HttpServerAuthenticationMechanismFactory Modifier and Type Method Description HttpAuthenticationFactory.BuilderHttpAuthenticationFactory.Builder. setFactory(HttpServerAuthenticationMechanismFactory factory)Method parameters in org.wildfly.security.auth.server with type arguments of type HttpServerAuthenticationMechanismFactory Modifier and Type Method Description protected HttpServerAuthenticationMechanismHttpAuthenticationFactory. doCreate(String name, CallbackHandler callbackHandler, UnaryOperator<HttpServerAuthenticationMechanismFactory> factoryTransformation)Deprecated. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.auth.server.http
Methods in org.wildfly.security.auth.server.http with parameters of type HttpServerAuthenticationMechanismFactory Modifier and Type Method Description HttpAuthenticationFactory.BuilderHttpAuthenticationFactory.Builder. setFactory(HttpServerAuthenticationMechanismFactory factory)Method parameters in org.wildfly.security.auth.server.http with type arguments of type HttpServerAuthenticationMechanismFactory Modifier and Type Method Description protected HttpServerAuthenticationMechanismHttpAuthenticationFactory. doCreate(String name, CallbackHandler callbackHandler, UnaryOperator<HttpServerAuthenticationMechanismFactory> factoryTransformation) -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.basic
Classes in org.wildfly.security.http.basic that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classBasicMechanismFactoryAHttpServerAuthenticationMechanismFactoryimplementation for the Basic HTTP authentication mechanism. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.bearer
Classes in org.wildfly.security.http.bearer that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classBearerMechanismFactoryAHttpServerAuthenticationMechanismFactoryimplementation for the Bearer HTTP authentication mechanism. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.cert
Classes in org.wildfly.security.http.cert that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classClientCertMechanismFactoryAHttpServerAuthenticationMechanismFactoryimplementation for the Client Cert HTTP authentication mechanism. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.digest
Classes in org.wildfly.security.http.digest that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classDigestMechanismFactoryTheHttpServerAuthenticationMechanismFactoryimplementation for the HTTP Digest authentication mechanism. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.external
Classes in org.wildfly.security.http.external that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classExternalMechanismFactoryAHttpServerAuthenticationMechanismFactoryimplementation for the EXTERNAL HTTP authentication mechanism. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.form
Classes in org.wildfly.security.http.form that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classFormMechanismFactoryAHttpServerAuthenticationMechanismFactoryimplementation for the FORM HTTP authentication mechanism. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.spnego
Classes in org.wildfly.security.http.spnego that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classSpnegoMechanismFactoryAHttpServerAuthenticationMechanismFactoryimplementation for the SPNEGO HTTP authentication mechanism. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.util
Classes in org.wildfly.security.http.util that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classAggregateServerMechanismFactoryAHttpServerAuthenticationMechanismFactorythat is an aggregation of other factories.classFilterServerMechanismFactoryAn implementation ofHttpServerAuthenticationMechanismFactorythat wraps an existing factory and provides mechanism filtering by name.classPrivilegedServerMechanismFactoryAHttpServerAuthenticationMechanismFactorythat wraps a delegate so that any returnedHttpServerAuthenticationMechanismis wrapped by a wrapper that ensures all calls are using the providedAccessControlContext, if no AccessControlContext is provided then the one in place at the time this factory is instantiated is used instead.classPropertiesServerMechanismFactoryAHttpServerAuthenticationMechanismFactorythat adds a predefined set of properties to all calls to the delegate.classSecurityProviderServerMechanismFactoryAHttpServerAuthenticationMechanismFactorythat loads factories from a supplied array ofProviderinstances.classServiceLoaderServerMechanismFactoryAHttpServerAuthenticationMechanismFactorywhich locates further factory implementations by iterating aServiceLoaderclassSetMechanismInformationMechanismFactoryA wrapperHttpServerAuthenticationMechanismFactoryto ensure that mechanism information for the current authentication request is set before the first authentication callbacks.classSocketAddressCallbackServerMechanismFactoryA wrapperHttpServerAuthenticationMechanismFactorythat sets the peer address using the current authentication request.classSortedServerMechanismFactoryAHttpServerAuthenticationMechanismFactorywhich sorts the mechanism names returned using the providedComparator.Constructors in org.wildfly.security.http.util with parameters of type HttpServerAuthenticationMechanismFactory Constructor Description AggregateServerMechanismFactory(HttpServerAuthenticationMechanismFactory... factories)Construct an instance ofAggregateServerMechanismFactorywith an array of factories to aggregate.FilterServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate, boolean include, String... mechanismNames)Construct a new instance that filters from a provided set of mechanism names.FilterServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate, boolean include, Collection<String> mechanismNames)Construct a new instance that filters from a provided set of mechanism names.FilterServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate, Predicate<String> predicate)Constructs a new instance.PrivilegedServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate)Construct a new instance ofPrivilegedServerMechanismFactoryusing the currentAccessControlContextfor calls to the wrapped factoryPrivilegedServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate, AccessControlContext accessControlContext)Construct a new instance ofPrivilegedServerMechanismFactory.PropertiesServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate, Map<String,?> properties)Construct a new instance.SetMechanismInformationMechanismFactory(HttpServerAuthenticationMechanismFactory delegate)Construct a wrapping mechanism factory instance.SocketAddressCallbackServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate)Construct a wrapping mechanism factory instance.SortedServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate, Comparator<String> mechanismNameComparator)Constructor parameters in org.wildfly.security.http.util with type arguments of type HttpServerAuthenticationMechanismFactory Constructor Description ServiceLoaderServerMechanismFactory(ServiceLoader<HttpServerAuthenticationMechanismFactory> serviceLoader)Constructs a new instance with a previously createdServiceLoaderThis class synchronizes on the supplied service loader, if the same is synchronized against outside thenServiceLoader.reload()can safely be called. -
Uses of HttpServerAuthenticationMechanismFactory in org.wildfly.security.http.util.sso
Classes in org.wildfly.security.http.util.sso that implement HttpServerAuthenticationMechanismFactory Modifier and Type Class Description classSingleSignOnServerMechanismFactoryAHttpServerAuthenticationMechanismFactorywhich enables single sign-on to the mechanisms provided by a another http mechanism factory.Constructors in org.wildfly.security.http.util.sso with parameters of type HttpServerAuthenticationMechanismFactory Constructor Description SingleSignOnServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate, SingleSignOnSessionFactory singleSignOnSessionFactory, SingleSignOnConfiguration configuration)Creates a new instance.SingleSignOnServerMechanismFactory(HttpServerAuthenticationMechanismFactory delegate, SingleSignOnSessionFactory singleSignOnSessionFactory, SingleSignOnServerMechanismFactory.SingleSignOnConfiguration configuration)Deprecated.
-