Uses of Interface
org.wildfly.security.auth.server.RealmIdentity
-
Packages that use RealmIdentity Package Description org.wildfly.security.auth.realm Security realm implementations for Elytron.org.wildfly.security.auth.realm.jdbc Classes related to aSecurityRealm
implementation based on the JDBC (Java Database Connectivity) API.org.wildfly.security.auth.realm.ldap Classes related to aSecurityRealm
implementation capable of integrating with LDAP servers.org.wildfly.security.auth.realm.token Classes related to aSecurityRealm
implementation that handles different types of security tokens.org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.auth.server.event org.wildfly.security.cache org.wildfly.security.http.oidc -
-
Uses of RealmIdentity in org.wildfly.security.auth.realm
Classes in org.wildfly.security.auth.realm that implement RealmIdentity Modifier and Type Class Description (package private) static class
AggregateSecurityRealm.Identity
(package private) class
DistributedSecurityRealm.EvidenceDistributedIdentity
(package private) class
DistributedSecurityRealm.PrincipalDistributedIdentity
protected class
FailoverSecurityRealm.FailoverRealmIdentity
(package private) static class
FileSystemSecurityRealm.Identity
private class
JaasSecurityRealm.JaasRealmIdentity
private class
KeyStoreBackedSecurityRealm.KeyStoreRealmIdentity
private class
SimpleMapBackedSecurityRealm.SimpleMapRealmIdentity
Fields in org.wildfly.security.auth.realm declared as RealmIdentity Modifier and Type Field Description private RealmIdentity
AggregateSecurityRealm.Identity. authenticationIdentity
private RealmIdentity[]
AggregateSecurityRealm.Identity. authorizationIdentities
private RealmIdentity
DistributedSecurityRealm.EvidenceDistributedIdentity. currentIdentity
private RealmIdentity
DistributedSecurityRealm.PrincipalDistributedIdentity. currentIdentity
protected RealmIdentity
FailoverSecurityRealm.FailoverRealmIdentity. delegate
Methods in org.wildfly.security.auth.realm that return RealmIdentity Modifier and Type Method Description protected RealmIdentity
FailoverSecurityRealm. createFailoverIdentity(RealmIdentity identity, Principal principal)
protected RealmIdentity
FailoverSecurityRealm. createFailoverIdentity(RealmIdentity identity, Evidence evidence)
protected RealmIdentity
FailoverSecurityRealm.FailoverRealmIdentity. failover(RealmUnavailableException rue)
private RealmIdentity
AggregateSecurityRealm. getAuthorizationIdentity(SecurityRealm authorizationRealm, Evidence evidence, Function<Principal,Principal> principalTransformer, RealmIdentity authenticationIdentity)
protected abstract RealmIdentity
FailoverSecurityRealm.FailoverRealmIdentity. getFailoverIdentity()
RealmIdentity
AggregateSecurityRealm. getRealmIdentity(Principal principal)
RealmIdentity
AggregateSecurityRealm. getRealmIdentity(Evidence evidence)
RealmIdentity
CachingSecurityRealm. getRealmIdentity(Principal principal)
RealmIdentity
DistributedSecurityRealm. getRealmIdentity(Principal principal)
RealmIdentity
DistributedSecurityRealm. getRealmIdentity(Evidence evidence)
RealmIdentity
FailoverSecurityRealm. getRealmIdentity(Principal principal)
RealmIdentity
FailoverSecurityRealm. getRealmIdentity(Evidence evidence)
RealmIdentity
FileSystemSecurityRealm. getRealmIdentity(Principal principal)
RealmIdentity
JaasSecurityRealm. getRealmIdentity(Principal principal)
RealmIdentity
KeyStoreBackedSecurityRealm. getRealmIdentity(Principal principal)
RealmIdentity
LegacyPropertiesSecurityRealm. getRealmIdentity(Principal principal)
RealmIdentity
SimpleMapBackedSecurityRealm. getRealmIdentity(Principal principal)
Methods in org.wildfly.security.auth.realm with parameters of type RealmIdentity Modifier and Type Method Description protected RealmIdentity
FailoverSecurityRealm. createFailoverIdentity(RealmIdentity identity, Principal principal)
protected RealmIdentity
FailoverSecurityRealm. createFailoverIdentity(RealmIdentity identity, Evidence evidence)
private RealmIdentity
AggregateSecurityRealm. getAuthorizationIdentity(SecurityRealm authorizationRealm, Evidence evidence, Function<Principal,Principal> principalTransformer, RealmIdentity authenticationIdentity)
Constructors in org.wildfly.security.auth.realm with parameters of type RealmIdentity Constructor Description FailoverRealmIdentity(RealmIdentity identity)
Identity(RealmIdentity authenticationIdentity, RealmIdentity[] authorizationIdentities)
-
Uses of RealmIdentity in org.wildfly.security.auth.realm.jdbc
Classes in org.wildfly.security.auth.realm.jdbc that implement RealmIdentity Modifier and Type Class Description private class
JdbcSecurityRealm.JdbcRealmIdentity
Methods in org.wildfly.security.auth.realm.jdbc that return RealmIdentity Modifier and Type Method Description RealmIdentity
JdbcSecurityRealm. getRealmIdentity(Principal principal)
-
Uses of RealmIdentity in org.wildfly.security.auth.realm.ldap
Classes in org.wildfly.security.auth.realm.ldap that implement RealmIdentity Modifier and Type Class Description private class
LdapSecurityRealm.LdapRealmIdentity
Methods in org.wildfly.security.auth.realm.ldap that return RealmIdentity Modifier and Type Method Description RealmIdentity
LdapSecurityRealm. getRealmIdentity(Principal principal)
-
Uses of RealmIdentity in org.wildfly.security.auth.realm.token
Classes in org.wildfly.security.auth.realm.token that implement RealmIdentity Modifier and Type Class Description (package private) class
TokenSecurityRealm.TokenRealmIdentity
Methods in org.wildfly.security.auth.realm.token that return RealmIdentity Modifier and Type Method Description RealmIdentity
TokenSecurityRealm. getRealmIdentity(Evidence evidence)
-
Uses of RealmIdentity in org.wildfly.security.auth.server
Subinterfaces of RealmIdentity in org.wildfly.security.auth.server Modifier and Type Interface Description interface
ModifiableRealmIdentity
A realm identity which is modifiable.Fields in org.wildfly.security.auth.server declared as RealmIdentity Modifier and Type Field Description static RealmIdentity
RealmIdentity. ANONYMOUS
The anonymous realm identity.static RealmIdentity
RealmIdentity. NON_EXISTENT
An identity for a non-existent user.private RealmIdentity
ServerAuthenticationContext.AuthorizedAuthenticationState. realmIdentity
private RealmIdentity
ServerAuthenticationContext.NameAssignedState. realmIdentity
Methods in org.wildfly.security.auth.server that return RealmIdentity Modifier and Type Method Description RealmIdentity
SecurityDomain. getIdentity(String name)
Look up aRealmIdentity
by name by wrapping the name in aNamePrincipal
and callingSecurityDomain.getIdentity(Principal)
.RealmIdentity
SecurityDomain. getIdentity(Principal principal)
Look up aRealmIdentity
by principal.default RealmIdentity
SecurityRealm. getRealmIdentity(Principal principal)
Get a handle for to the identity for the given principal in the context of this security realm.default RealmIdentity
SecurityRealm. getRealmIdentity(Evidence evidence)
Get a handle for to the identity for the given evidence in the context of this security realm.default RealmIdentity
SecurityRealm. getRealmIdentity(Evidence evidence, Function<Principal,Principal> principalTransformer)
Get a handle for the identity for the given evidence in the context of this security realm.(package private) RealmIdentity
ServerAuthenticationContext.AnonymousAuthorizedState. getRealmIdentity()
(package private) RealmIdentity
ServerAuthenticationContext.AuthorizedAuthenticationState. getRealmIdentity()
(package private) RealmIdentity
ServerAuthenticationContext.InvalidNameState. getRealmIdentity()
(package private) RealmIdentity
ServerAuthenticationContext.NameAssignedState. getRealmIdentity()
(package private) RealmIdentity
ServerAuthenticationContext.State. getRealmIdentity()
Methods in org.wildfly.security.auth.server that return types with arguments of type RealmIdentity Modifier and Type Method Description org.wildfly.common.function.ExceptionFunction<Principal,RealmIdentity,RealmUnavailableException>
SecurityDomain. getIdentityLookupFunction()
Get a function which can be used to look up principals without a security manager permission check.Constructors in org.wildfly.security.auth.server with parameters of type RealmIdentity Constructor Description AuthorizedAuthenticationState(SecurityIdentity authorizedIdentity, Principal authenticationPrincipal, RealmInfo realmInfo, RealmIdentity realmIdentity, MechanismRealmConfiguration mechanismRealmConfiguration, MechanismConfiguration mechanismConfiguration)
NameAssignedState(SecurityIdentity capturedIdentity, RealmInfo realmInfo, RealmIdentity realmIdentity, Principal authenticationPrincipal, MechanismConfiguration mechanismConfiguration, MechanismRealmConfiguration mechanismRealmConfiguration, IdentityCredentials privateCredentials, IdentityCredentials publicCredentials, Attributes runtimeAttributes)
-
Uses of RealmIdentity in org.wildfly.security.auth.server.event
Fields in org.wildfly.security.auth.server.event declared as RealmIdentity Modifier and Type Field Description private RealmIdentity
RealmAuthenticationEvent. realmIdentity
Methods in org.wildfly.security.auth.server.event that return RealmIdentity Modifier and Type Method Description RealmIdentity
RealmAuthenticationEvent. getRealmIdentity()
Get the realm identity.Constructors in org.wildfly.security.auth.server.event with parameters of type RealmIdentity Constructor Description RealmAbandonedAuthenticationEvent(RealmIdentity realmIdentity)
Construct a new instance.RealmAuthenticationEvent(RealmIdentity realmIdentity)
Construct a new instance.RealmDefiniteOutcomeAuthenticationEvent(RealmIdentity realmIdentity, Credential credential, Evidence evidence)
Construct a new instance.RealmFailedAuthenticationEvent(RealmIdentity realmIdentity, Credential credential, Evidence evidence)
Construct a new instance.RealmSuccessfulAuthenticationEvent(RealmIdentity realmIdentity, AuthorizationIdentity authorizationIdentity, Credential credential, Evidence evidence)
Construct a new instance. -
Uses of RealmIdentity in org.wildfly.security.cache
Fields in org.wildfly.security.cache declared as RealmIdentity Modifier and Type Field Description (package private) RealmIdentity
LRURealmIdentityCache.CacheEntry. value
Methods in org.wildfly.security.cache that return RealmIdentity Modifier and Type Method Description default RealmIdentity
RealmIdentityCache. computeIfAbsent(Principal principal, Function<Principal,RealmIdentity> mappingFunction)
If the specified key is not already associated with a value (or is mapped tonull
), attempts to compute its value using the given mapping function and enters it into this map unlessnull
.RealmIdentity
LRURealmIdentityCache. get(Principal key)
RealmIdentity
RealmIdentityCache. get(Principal principal)
Obtains a previously cachedRealmIdentity
ornull
if no entry could be found with the specifiedPrincipal
.private RealmIdentity
LRURealmIdentityCache. removeIfExpired(LRURealmIdentityCache.CacheEntry cached)
(package private) RealmIdentity
LRURealmIdentityCache.CacheEntry. value()
Methods in org.wildfly.security.cache with parameters of type RealmIdentity Modifier and Type Method Description void
LRURealmIdentityCache. put(Principal key, RealmIdentity newValue)
void
RealmIdentityCache. put(Principal principal, RealmIdentity realmIdentity)
Puts a newRealmIdentity
into the cache and referenced by the specifiedPrincipal
.Method parameters in org.wildfly.security.cache with type arguments of type RealmIdentity Modifier and Type Method Description default RealmIdentity
RealmIdentityCache. computeIfAbsent(Principal principal, Function<Principal,RealmIdentity> mappingFunction)
If the specified key is not already associated with a value (or is mapped tonull
), attempts to compute its value using the given mapping function and enters it into this map unlessnull
.Constructors in org.wildfly.security.cache with parameters of type RealmIdentity Constructor Description CacheEntry(Principal key, RealmIdentity value, long maxAge)
-
Uses of RealmIdentity in org.wildfly.security.http.oidc
Methods in org.wildfly.security.http.oidc that return RealmIdentity Modifier and Type Method Description private RealmIdentity
OidcSecurityRealm. createRealmIdentity(OidcPrincipal principal)
RealmIdentity
OidcSecurityRealm. getRealmIdentity(Principal principal)
-