Uses of Interface
org.wildfly.security.auth.server.MechanismConfigurationSelector
-
Packages that use MechanismConfigurationSelector Package Description org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.auth.server.http org.wildfly.security.auth.server.sasl org.wildfly.security.ssl -
-
Uses of MechanismConfigurationSelector in org.wildfly.security.auth.server
Fields in org.wildfly.security.auth.server declared as MechanismConfigurationSelector Modifier and Type Field Description private MechanismConfigurationSelector
AbstractMechanismAuthenticationFactory.Builder. mechanismConfigurationSelector
private MechanismConfigurationSelector
AbstractMechanismAuthenticationFactory. mechanismConfigurationSelector
private MechanismConfigurationSelector
ServerAuthenticationContext.InactiveState. mechanismConfigurationSelector
private MechanismConfigurationSelector
ServerAuthenticationContext.InitialState. mechanismConfigurationSelector
Methods in org.wildfly.security.auth.server that return MechanismConfigurationSelector Modifier and Type Method Description static MechanismConfigurationSelector
MechanismConfigurationSelector. aggregate(MechanismConfigurationSelector... configurationSelectors)
Create aMechanismConfigurationSelector
that is an aggregation of other selectors, when called the selectors will be called in order and the firstMechanismConfiguration
returned will be used.static MechanismConfigurationSelector
MechanismConfigurationSelector. constantSelector(MechanismConfiguration mechanismConfiguration)
Create a constantMechanismConfigurationSelector
which will always return the sameMechanismConfiguration
instance.MechanismConfigurationSelector
AbstractMechanismAuthenticationFactory.Builder. getMechanismConfigurationSelector()
static MechanismConfigurationSelector
MechanismConfigurationSelector. predicateSelector(Predicate<MechanismInformation> predicate, MechanismConfiguration mechanismConfiguration)
Create a simpleMechanismConfigurationSelector
that is paired with aPredicate
to test if the configuration should be used for the supplied information.Methods in org.wildfly.security.auth.server with parameters of type MechanismConfigurationSelector Modifier and Type Method Description static MechanismConfigurationSelector
MechanismConfigurationSelector. aggregate(MechanismConfigurationSelector... configurationSelectors)
Create aMechanismConfigurationSelector
that is an aggregation of other selectors, when called the selectors will be called in order and the firstMechanismConfiguration
returned will be used.ServerAuthenticationContext
SecurityDomain. createNewAuthenticationContext(MechanismConfigurationSelector mechanismConfigurationSelector)
Create a new authentication context for this security domain which can be used to carry out a single authentication operation.(package private) ServerAuthenticationContext
SecurityDomain. createNewAuthenticationContext(SecurityIdentity capturedIdentity, MechanismConfigurationSelector mechanismConfigurationSelector)
AbstractMechanismAuthenticationFactory.Builder<M,F,E>
AbstractMechanismAuthenticationFactory.Builder. setMechanismConfigurationSelector(MechanismConfigurationSelector mechanismConfigurationSelector)
HttpAuthenticationFactory.Builder
HttpAuthenticationFactory.Builder. setMechanismConfigurationSelector(MechanismConfigurationSelector mechanismConfigurationSelector)
MechanismAuthenticationFactory.Builder<M,F,E>
MechanismAuthenticationFactory.Builder. setMechanismConfigurationSelector(MechanismConfigurationSelector mechanismConfigurationSelector)
Set theMechanismConfigurationSelector
for the factory being built.SaslAuthenticationFactory.Builder
SaslAuthenticationFactory.Builder. setMechanismConfigurationSelector(MechanismConfigurationSelector mechanismConfigurationSelector)
-
Uses of MechanismConfigurationSelector in org.wildfly.security.auth.server.http
Methods in org.wildfly.security.auth.server.http with parameters of type MechanismConfigurationSelector Modifier and Type Method Description HttpAuthenticationFactory.Builder
HttpAuthenticationFactory.Builder. setMechanismConfigurationSelector(MechanismConfigurationSelector mechanismConfigurationSelector)
Constructors in org.wildfly.security.auth.server.http with parameters of type MechanismConfigurationSelector Constructor Description HttpAuthenticationFactory(SecurityDomain securityDomain, MechanismConfigurationSelector mechanismConfigurationSelector, HttpServerAuthenticationMechanismFactory factory)
-
Uses of MechanismConfigurationSelector in org.wildfly.security.auth.server.sasl
Methods in org.wildfly.security.auth.server.sasl with parameters of type MechanismConfigurationSelector Modifier and Type Method Description SaslAuthenticationFactory.Builder
SaslAuthenticationFactory.Builder. setMechanismConfigurationSelector(MechanismConfigurationSelector mechanismConfigurationSelector)
Constructors in org.wildfly.security.auth.server.sasl with parameters of type MechanismConfigurationSelector Constructor Description SaslAuthenticationFactory(SecurityDomain securityDomain, MechanismConfigurationSelector mechanismConfigurationSelector, SaslServerFactory saslServerFactory)
-
Uses of MechanismConfigurationSelector in org.wildfly.security.ssl
Fields in org.wildfly.security.ssl declared as MechanismConfigurationSelector Modifier and Type Field Description private MechanismConfigurationSelector
SecurityDomainTrustManager. mechanismConfigurationSelector
private MechanismConfigurationSelector
SSLContextBuilder. mechanismConfigurationSelector
Methods in org.wildfly.security.ssl with parameters of type MechanismConfigurationSelector Modifier and Type Method Description SSLContextBuilder
SSLContextBuilder. setMechanismConfigurationSelector(MechanismConfigurationSelector mechanismConfigurationSelector)
Set selector of mechanism configuration forServerAuthenticationContext
, which will be used for SSL client authentication.Constructors in org.wildfly.security.ssl with parameters of type MechanismConfigurationSelector Constructor Description SecurityDomainTrustManager(X509ExtendedTrustManager delegate, SecurityDomain securityDomain, boolean authenticationOptional, MechanismConfigurationSelector mechanismConfigurationSelector)
SecurityDomainTrustManager(X509TrustManager delegate, SecurityDomain securityDomain, boolean authenticationOptional, MechanismConfigurationSelector mechanismConfigurationSelector)
-