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. -
-
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 PrincipalDecoderPrincipalDecoder. DEFAULTThe default decoder, which just callsPrincipal.getName().static PrincipalDecoderPrincipalDecoder. UNKNOWNA principal decoder which cannot decode any principal.Methods in org.wildfly.security.auth.server that return PrincipalDecoder Modifier and Type Method Description static PrincipalDecoderPrincipalDecoder. aggregate(PrincipalDecoder... decoders)Create an aggregated principal decoder.static PrincipalDecoderPrincipalDecoder. 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 PrincipalDecoderPrincipalDecoder. concatenating(PrincipalDecoder former, String joinString, PrincipalDecoder latter)Create a principal decoder which concatenates the results of two principal decoders.static PrincipalDecoderPrincipalDecoder. constant(String name)Create a principal decoder which always returns the same name.default PrincipalDecoderPrincipalDecoder. 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 PrincipalDecoderPrincipalDecoder. aggregate(PrincipalDecoder... decoders)Create an aggregated principal decoder.static PrincipalDecoderPrincipalDecoder. 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 PrincipalDecoderPrincipalDecoder. concatenating(PrincipalDecoder former, String joinString, PrincipalDecoder latter)Create a principal decoder which concatenates the results of two principal decoders.SecurityDomain.BuilderSecurityDomain.Builder. setPrincipalDecoder(PrincipalDecoder principalDecoder)Set the principal decoder for this security domain, which will be used to convertPrincipalobjects into names for handling in the realm.
-