Package | Description |
---|---|
org.wildfly.security.auth.server |
Server side of authentication provided by Elytron.
|
org.wildfly.security.x500 |
Package containing X.500 representations.
|
Modifier and Type | Field and Description |
---|---|
static PrincipalDecoder |
PrincipalDecoder.DEFAULT
The default decoder, which just calls
Principal.getName() . |
static PrincipalDecoder |
PrincipalDecoder.UNKNOWN
A principal decoder which cannot decode any principal.
|
Modifier and Type | Method and Description |
---|---|
static PrincipalDecoder |
PrincipalDecoder.aggregate(PrincipalDecoder... decoders)
Create an aggregated credential decoder.
|
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.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.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.
|
Modifier and Type | Method and Description |
---|---|
static PrincipalDecoder |
PrincipalDecoder.aggregate(PrincipalDecoder... decoders)
Create an aggregated credential decoder.
|
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.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.
|
SecurityDomain.Builder |
SecurityDomain.Builder.setPrincipalDecoder(PrincipalDecoder principalDecoder)
Set the principal decoder for this security domain, which will be used to convert
Principal objects
into names for handling in the realm. |
Modifier and Type | Class and Description |
---|---|
class |
X500AttributePrincipalDecoder
A principal decoder which decodes an attribute from an X.500 principal.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.