Uses of Interface
org.wildfly.security.auth.server.RealmMapper
-
Packages that use RealmMapper Package Description org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.auth.util Miscellaneous utility classes and APIs for client and server login applications. -
-
Uses of RealmMapper in org.wildfly.security.auth.server
Fields in org.wildfly.security.auth.server declared as RealmMapper Modifier and Type Field Description static RealmMapperRealmMapper. DEFAULT_REALM_MAPPERA realm mapper which always falls back to a default realm.Methods in org.wildfly.security.auth.server that return RealmMapper Modifier and Type Method Description static RealmMapperRealmMapper. aggregate(RealmMapper... mappers)Create an aggregate realm mapping strategy.static RealmMapperRealmMapper. aggregate(RealmMapper mapper1, RealmMapper mapper2)Create an aggregate realm mapping strategy.RealmMapperMechanismConfiguration. getRealmMapper()Get the realm mapper.RealmMapperMechanismRealmConfiguration. getRealmMapper()Get the realm mapper for this mechanism realm.static RealmMapperRealmMapper. matching(BiPredicate<? super Principal,? super Evidence> matchRule, String realmName)Create a realm mapper that matches when the given predicate matches.static RealmMapperRealmMapper. matchingEvidence(Predicate<? super Evidence> matchRule, String realmName)Create a realm mapper that matches when the given predicate matches the evidence.static RealmMapperRealmMapper. matchingEvidenceType(Class<? extends Evidence> evidenceType, String realmName)Create a realm mapper that matches when the evidence is of the given type.static RealmMapperRealmMapper. matchingPrincipal(Predicate<? super Principal> matchRule, String realmName)Create a realm mapper that matches when the given predicate matches the principal.static RealmMapperRealmMapper. matchingPrincipalType(Class<? extends Principal> principalType, String realmName)Create a realm mapper that matches when the principal is of the given type.static RealmMapperRealmMapper. single(String realmName)Create a realm mapper that always maps to the given realm.Methods in org.wildfly.security.auth.server with parameters of type RealmMapper Modifier and Type Method Description static RealmMapperRealmMapper. aggregate(RealmMapper... mappers)Create an aggregate realm mapping strategy.static RealmMapperRealmMapper. aggregate(RealmMapper mapper1, RealmMapper mapper2)Create an aggregate realm mapping strategy.MechanismConfiguration.BuilderMechanismConfiguration.Builder. setRealmMapper(RealmMapper realmMapper)Sets a realm mapper to be used by the mechanism.MechanismRealmConfiguration.BuilderMechanismRealmConfiguration.Builder. setRealmMapper(RealmMapper realmMapper)Sets a realm mapper to be used by the mechanism.SecurityDomain.BuilderSecurityDomain.Builder. setRealmMapper(RealmMapper realmMapper)Set the realm mapper for this security domain, which selects a realm based on the authentication name. -
Uses of RealmMapper in org.wildfly.security.auth.util
Classes in org.wildfly.security.auth.util that implement RealmMapper Modifier and Type Class Description classMappedRegexRealmMapperA simple mapping regular expression-based realm mapper.classSimpleRegexRealmMapperA simple regular expression-based realm mapper.Constructors in org.wildfly.security.auth.util with parameters of type RealmMapper Constructor Description MappedRegexRealmMapper(Pattern realmNamePattern, RealmMapper delegate, Map<String,String> realmNameMap)Construct a new instance.SimpleRegexRealmMapper(Pattern realmNamePattern, RealmMapper delegate)Construct a new instance.
-