Uses of Interface
org.wildfly.security.auth.server.RealmIdentity
-
Packages that use RealmIdentity Package Description org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.auth.server.event -
-
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.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.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. -
Uses of RealmIdentity in org.wildfly.security.auth.server.event
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.RealmFailedAuthenticationEvent(RealmIdentity realmIdentity, Credential credential, Evidence evidence)
Construct a new instance.RealmSuccessfulAuthenticationEvent(RealmIdentity realmIdentity, AuthorizationIdentity authorizationIdentity, Credential credential, Evidence evidence)
Construct a new instance.
-