Uses of Class
org.wildfly.security.auth.client.AuthenticationContext
-
Packages that use AuthenticationContext Package Description org.wildfly.security.auth.client Elytron Client enable remote clients to authenticate using Elytron.org.wildfly.security.sasl.auth.util org.wildfly.security.sasl.util -
-
Uses of AuthenticationContext in org.wildfly.security.auth.client
Methods in org.wildfly.security.auth.client that return AuthenticationContext Modifier and Type Method Description static AuthenticationContextAuthenticationContext. captureCurrent()Get the current thread's captured authentication context.static AuthenticationContextAuthenticationContext. empty()Get a new, empty authentication context.AuthenticationContextLegacyConfiguration. getConfiguredAuthenticationContext()Get the configured authentication context.AuthenticationContextAuthenticationContext. replacing(int idx, MatchRule rule, AuthenticationConfiguration configuration)Get a new authentication context which is the same as this one, but which replaces the rule and configuration at the given index with the given rule and configuration.AuthenticationContextAuthenticationContext. replacingSslContext(int idx, MatchRule rule, SecurityFactory<SSLContext> sslContext)Get a new authentication context which is the same as this one, but which replaces the rule and SSL context at the given index with the given rule and SSL context.AuthenticationContextAuthenticationContext. with(int idx, MatchRule rule, AuthenticationConfiguration configuration)Get a new authentication context which is the same as this one, but which includes the given rule and configuration inserted at the position of its list indicated by theidxparameter.AuthenticationContextAuthenticationContext. with(AuthenticationContext other)Get a new authentication context which is the same as this one, but which includes the rules, configurations and SSL contexts of the given context at the end of its list.AuthenticationContextAuthenticationContext. with(MatchRule rule, AuthenticationConfiguration configuration)Get a new authentication context which is the same as this one, but which includes the given rule and configuration at the end of its list.AuthenticationContextAuthenticationContext. without(int idx)Get a new authentication context which is the same as this one, but without the rule and configuration at the index indicated by theidxparameter.AuthenticationContextAuthenticationContext. withoutSsl(int idx)Get a new authentication context which is the same as this one, but without the rule and configuration at the index indicated by theidxparameter.AuthenticationContextAuthenticationContext. withSsl(int idx, MatchRule rule, SecurityFactory<SSLContext> sslContext)Get a new authentication context which is the same as this one, but which includes the given rule and SSL context inserted at the position of its list indicated by theidxparameter.AuthenticationContextAuthenticationContext. withSsl(MatchRule rule, SecurityFactory<SSLContext> sslContext)Get a new authentication context which is the same as this one, but which includes the given rule and SSL context at the end of its SSL context list.Methods in org.wildfly.security.auth.client that return types with arguments of type AuthenticationContext Modifier and Type Method Description static org.wildfly.common.context.ContextManager<AuthenticationContext>AuthenticationContext. getContextManager()Get the context manager for authentication contexts.org.wildfly.common.context.ContextManager<AuthenticationContext>AuthenticationContext. getInstanceContextManager()static SecurityFactory<AuthenticationContext>ElytronXmlParser. parseAuthenticationClientConfiguration()Parse an Elytron authentication client configuration from a configuration discovered using the default wildfly-client-config discovery rules.static SecurityFactory<AuthenticationContext>ElytronXmlParser. parseAuthenticationClientConfiguration(URI uri)Parse an Elytron authentication client configuration from a resource located at a specifiedURI.Methods in org.wildfly.security.auth.client with parameters of type AuthenticationContext Modifier and Type Method Description AuthenticationConfigurationAuthenticationContextConfigurationClient. getAuthenticationConfiguration(URI uri, AuthenticationContext authenticationContext)Get the authentication configuration which matches the given URI, orAuthenticationConfiguration.EMPTYif there is none.AuthenticationConfigurationAuthenticationContextConfigurationClient. getAuthenticationConfiguration(URI uri, AuthenticationContext authenticationContext, int protocolDefaultPort)Get the authentication configuration which matches the given URI, orAuthenticationConfiguration.EMPTYif there is none, setting a default protocol port.AuthenticationConfigurationAuthenticationContextConfigurationClient. getAuthenticationConfiguration(URI uri, AuthenticationContext authenticationContext, int protocolDefaultPort, String abstractType, String abstractTypeAuthority)Get the authentication configuration which matches the given URI and type, orAuthenticationConfiguration.EMPTYif there is none, setting a default protocol port.AuthenticationConfigurationAuthenticationContextConfigurationClient. getAuthenticationConfigurationNoOverrides(URI uri, AuthenticationContext authenticationContext, String abstractType, String abstractTypeAuthority)Get the authentication configuration which matches the given URI and type, orAuthenticationConfiguration.EMPTYif there is none.SSLContextAuthenticationContextConfigurationClient. getSSLContext(URI uri, AuthenticationContext authenticationContext)Get the SSL context which matches the given URI, orSSLContext.getDefault()if there is none.SSLContextAuthenticationContextConfigurationClient. getSSLContext(URI uri, AuthenticationContext authenticationContext, String abstractType, String abstractTypeAuthority)Get the SSL context which matches the given URI and type, orSSLContext.getDefault()if there is none.SecurityFactory<SSLContext>AuthenticationContextConfigurationClient. getSSLContextFactory(URI uri, AuthenticationContext authenticationContext, String abstractType, String abstractTypeAuthority)Get the SSL context factory which matches the given URI and type, orSSLContext.getDefault()if there is none.AuthenticationContextAuthenticationContext. with(AuthenticationContext other)Get a new authentication context which is the same as this one, but which includes the rules, configurations and SSL contexts of the given context at the end of its list. -
Uses of AuthenticationContext in org.wildfly.security.sasl.auth.util
Constructors in org.wildfly.security.sasl.auth.util with parameters of type AuthenticationContext Constructor Description AuthenticationContextSaslClient(SaslClient delegate, AuthenticationContext context)Construct a new instance.AuthenticationContextSaslClientFactory(SaslClientFactory delegate, AuthenticationContext context)Construct a new instance.AuthenticationContextSaslServer(SaslServer delegate, AuthenticationContext context)Construct a new instance.AuthenticationContextSaslServerFactory(SaslServerFactory delegate, AuthenticationContext context)Construct a new instance. -
Uses of AuthenticationContext in org.wildfly.security.sasl.util
Constructors in org.wildfly.security.sasl.util with parameters of type AuthenticationContext Constructor Description AuthenticationContextSaslClient(SaslClient delegate, AuthenticationContext context)Deprecated.Construct a new instance.AuthenticationContextSaslClientFactory(SaslClientFactory delegate, AuthenticationContext context)Deprecated.Construct a new instance.AuthenticationContextSaslServer(SaslServer delegate, AuthenticationContext context)Deprecated.Construct a new instance.AuthenticationContextSaslServerFactory(SaslServerFactory delegate, AuthenticationContext context)Deprecated.Construct a new instance.
-