Uses of Class
org.wildfly.security.sasl.SaslMechanismPredicate
-
Packages that use SaslMechanismPredicate Package Description org.wildfly.security.sasl WildFly SASL providers base package. -
-
Uses of SaslMechanismPredicate in org.wildfly.security.sasl
Subclasses of SaslMechanismPredicate in org.wildfly.security.sasl Modifier and Type Class Description (package private) static class
SaslMechanismPredicate.AllOrNonePredicate
(package private) static class
SaslMechanismPredicate.AllPredicate
(package private) static class
SaslMechanismPredicate.AnyPredicate
(package private) static class
SaslMechanismPredicate.BooleanPredicate
(package private) static class
SaslMechanismPredicate.ExactPredicate
(package private) static class
SaslMechanismPredicate.FamilyPredicate
(package private) static class
SaslMechanismPredicate.HashPredicate
(package private) static class
SaslMechanismPredicate.IfPredicate
(package private) static class
SaslMechanismPredicate.MultiPredicate
(package private) static class
SaslMechanismPredicate.NotPredicate
Fields in org.wildfly.security.sasl declared as SaslMechanismPredicate Modifier and Type Field Description private SaslMechanismPredicate
SaslMechanismPredicate.IfPredicate. conditionPredicate
private SaslMechanismPredicate
SaslMechanismPredicate.IfPredicate. falsePredicate
(package private) static SaslMechanismPredicate
SaslMechanismPredicate. MUTUAL
private static SaslMechanismPredicate[]
SaslMechanismSelector. NO_PREDICATES
(package private) static SaslMechanismPredicate
SaslMechanismPredicate. PLUS
private SaslMechanismPredicate
SaslMechanismPredicate.NotPredicate. predicate
private SaslMechanismPredicate
SaslMechanismSelector.AddMatchingSelector. predicate
private SaslMechanismPredicate
SaslMechanismSelector.ForbidMatchingSelector. predicate
(package private) SaslMechanismPredicate[]
SaslMechanismPredicate.MultiPredicate. predicates
(package private) static SaslMechanismPredicate
SaslMechanismPredicate. TLS_ACTIVE
private SaslMechanismPredicate
SaslMechanismPredicate.IfPredicate. truePredicate
Methods in org.wildfly.security.sasl with parameters of type SaslMechanismPredicate Modifier and Type Method Description SaslMechanismSelector
SaslMechanismSelector. addMatching(SaslMechanismPredicate predicate)
(package private) boolean
SaslMechanismSelector.AddMatchingSelector. adds(SaslMechanismPredicate predicate)
(package private) boolean
SaslMechanismSelector. adds(SaslMechanismPredicate predicate)
boolean
SaslMechanismPredicate.BooleanPredicate. equals(SaslMechanismPredicate other)
abstract boolean
SaslMechanismPredicate. equals(SaslMechanismPredicate other)
boolean
SaslMechanismPredicate.ExactPredicate. equals(SaslMechanismPredicate other)
boolean
SaslMechanismPredicate.FamilyPredicate. equals(SaslMechanismPredicate other)
boolean
SaslMechanismPredicate.HashPredicate. equals(SaslMechanismPredicate other)
boolean
SaslMechanismPredicate.IfPredicate. equals(SaslMechanismPredicate other)
boolean
SaslMechanismPredicate.MultiPredicate. equals(SaslMechanismPredicate other)
boolean
SaslMechanismPredicate.NotPredicate. equals(SaslMechanismPredicate other)
SaslMechanismSelector
SaslMechanismSelector. forbidMatching(SaslMechanismPredicate predicate)
(package private) boolean
SaslMechanismSelector.ForbidMatchingSelector. forbids(SaslMechanismPredicate predicate)
(package private) boolean
SaslMechanismSelector. forbids(SaslMechanismPredicate predicate)
static SaslMechanismPredicate
SaslMechanismPredicate. matchAll(SaslMechanismPredicate... predicates)
static SaslMechanismPredicate
SaslMechanismPredicate. matchAllOrNone(SaslMechanismPredicate... predicates)
static SaslMechanismPredicate
SaslMechanismPredicate. matchAny(SaslMechanismPredicate... predicates)
static SaslMechanismPredicate
SaslMechanismPredicate. matchIf(SaslMechanismPredicate conditionPredicate, SaslMechanismPredicate truePredicate, SaslMechanismPredicate falsePredicate)
static SaslMechanismPredicate
SaslMechanismPredicate. matchNot(SaslMechanismPredicate predicate)
Constructors in org.wildfly.security.sasl with parameters of type SaslMechanismPredicate Constructor Description AddMatchingSelector(SaslMechanismSelector prev, SaslMechanismPredicate predicate)
AllOrNonePredicate(SaslMechanismPredicate[] predicates)
AllPredicate(SaslMechanismPredicate[] predicates)
AnyPredicate(SaslMechanismPredicate[] predicates)
ForbidMatchingSelector(SaslMechanismSelector prev, SaslMechanismPredicate predicate)
IfPredicate(SaslMechanismPredicate conditionPredicate, SaslMechanismPredicate truePredicate, SaslMechanismPredicate falsePredicate)
MultiPredicate(SaslMechanismPredicate[] predicates)
NotPredicate(SaslMechanismPredicate predicate)
-