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
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.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)
Constructors in org.wildfly.security.auth.server with parameters of type MechanismConfigurationSelector Constructor Description AbstractMechanismAuthenticationFactory(SecurityDomain securityDomain, MechanismConfigurationSelector mechanismConfigurationSelector, F factory)
-
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)
-
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)
-
Uses of MechanismConfigurationSelector in org.wildfly.security.ssl
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.
-