Uses of Interface
org.wildfly.security.auth.server.PrincipalDecoder
-
Packages that use PrincipalDecoder Package Description org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.x500 Package containing X.500 representations.org.wildfly.security.x500.principal -
-
Uses of PrincipalDecoder in org.wildfly.security.auth.server
Fields in org.wildfly.security.auth.server declared as PrincipalDecoder Modifier and Type Field Description static PrincipalDecoder
PrincipalDecoder. DEFAULT
The default decoder, which just callsPrincipal.getName()
.static PrincipalDecoder
PrincipalDecoder. UNKNOWN
A principal decoder which cannot decode any principal.Methods in org.wildfly.security.auth.server that return PrincipalDecoder Modifier and Type Method Description static PrincipalDecoder
PrincipalDecoder. aggregate(PrincipalDecoder... decoders)
Create an aggregated credential decoder.static PrincipalDecoder
PrincipalDecoder. concatenating(String joinString, PrincipalDecoder... decoders)
Create a principal decoder that concatenates the results of the given principal decoders in the order in which they're given.static PrincipalDecoder
PrincipalDecoder. concatenating(PrincipalDecoder former, String joinString, PrincipalDecoder latter)
Create a principal decoder which concatenates the results of two principal decoders.static PrincipalDecoder
PrincipalDecoder. constant(String name)
Create a principal decoder which always returns the same name.default PrincipalDecoder
PrincipalDecoder. withRewriter(NameRewriter nameRewriter)
Add a name rewriter to this principal decoder.Methods in org.wildfly.security.auth.server with parameters of type PrincipalDecoder Modifier and Type Method Description static PrincipalDecoder
PrincipalDecoder. aggregate(PrincipalDecoder... decoders)
Create an aggregated credential decoder.static PrincipalDecoder
PrincipalDecoder. concatenating(String joinString, PrincipalDecoder... decoders)
Create a principal decoder that concatenates the results of the given principal decoders in the order in which they're given.static PrincipalDecoder
PrincipalDecoder. concatenating(PrincipalDecoder former, String joinString, PrincipalDecoder latter)
Create a principal decoder which concatenates the results of two principal decoders.SecurityDomain.Builder
SecurityDomain.Builder. setPrincipalDecoder(PrincipalDecoder principalDecoder)
Set the principal decoder for this security domain, which will be used to convertPrincipal
objects into names for handling in the realm. -
Uses of PrincipalDecoder in org.wildfly.security.x500
Classes in org.wildfly.security.x500 that implement PrincipalDecoder Modifier and Type Class Description class
X500AttributePrincipalDecoder
Deprecated.UseX500AttributePrincipalDecoder
instead -
Uses of PrincipalDecoder in org.wildfly.security.x500.principal
Classes in org.wildfly.security.x500.principal that implement PrincipalDecoder Modifier and Type Class Description class
X500AttributePrincipalDecoder
A principal decoder which decodes an attribute from an X.500 principal.
-