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.private RealmMapperMechanismConfiguration.Builder. realmMapperprivate RealmMapperMechanismConfiguration. realmMapperprivate RealmMapperMechanismRealmConfiguration.Builder. realmMapperprivate RealmMapperMechanismRealmConfiguration. realmMapperprivate RealmMapperSecurityDomain.Builder. realmMapperprivate RealmMapperSecurityDomain. realmMapperMethods 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.(package private) RealmMapperSecurityDomain. getRealmMapper()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.(package private) static StringServerAuthenticationContext. mapAll(Principal principal, RealmMapper r1, RealmMapper r2, RealmMapper r3, String defaultRealmName, Evidence evidence)private static StringServerAuthenticationContext. mapRealmName(Principal principal, RealmMapper realmMapper, String defaultRealmName, Evidence evidence)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.Constructors in org.wildfly.security.auth.server with parameters of type RealmMapper Constructor Description MechanismConfiguration(Function<Principal,Principal> preRealmRewriter, Function<Principal,Principal> postRealmRewriter, Function<Principal,Principal> finalRewriter, RealmMapper realmMapper, Collection<MechanismRealmConfiguration> mechanismRealms, CredentialSource serverCredentialSource)MechanismRealmConfiguration(String realmName, Function<Principal,Principal> preRealmRewriter, Function<Principal,Principal> postRealmRewriter, Function<Principal,Principal> finalRewriter, RealmMapper realmMapper)Construct a new instance. -
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.Fields in org.wildfly.security.auth.util declared as RealmMapper Modifier and Type Field Description private RealmMapperSimpleRegexRealmMapper. delegateConstructors 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.
-