Uses of Interface
org.wildfly.security.sasl.util.SaslWrapper
-
-
Uses of SaslWrapper in org.wildfly.security.sasl.anonymous
Classes in org.wildfly.security.sasl.anonymous that implement SaslWrapper Modifier and Type Class Description class
AnonymousSaslClient
A client implementation of the RFC 4505ANONYMOUS
mechanism.class
AnonymousSaslServer
A server implementation of the RFC 4505ANONYMOUS
mechanism. -
Uses of SaslWrapper in org.wildfly.security.sasl.auth.util
Classes in org.wildfly.security.sasl.auth.util that implement SaslWrapper Modifier and Type Class Description class
AuthenticationContextSaslClient
A delegatingSaslClient
which establishes a specificAuthenticationContext
for the duration of the authentication process.class
AuthenticationContextSaslServer
A delegatingSaslServer
which establishes a specificAuthenticationContext
for the duration of the authentication process. -
Uses of SaslWrapper in org.wildfly.security.sasl.digest
Classes in org.wildfly.security.sasl.digest that implement SaslWrapper Modifier and Type Class Description (package private) class
AbstractDigestMechanism
protected class
AbstractDigestMechanism.DigestWrapper
(package private) class
DigestSaslClient
A client implementation of RFC 2831DIGEST
SASL mechanism.(package private) class
DigestSaslServer
A server implementation of RFC 2831DIGEST
SASL mechanism. -
Uses of SaslWrapper in org.wildfly.security.sasl.entity
Classes in org.wildfly.security.sasl.entity that implement SaslWrapper Modifier and Type Class Description (package private) class
EntitySaslClient
SaslClient for the ISO/IEC 9798-3 authentication mechanism as defined by RFC 3163.(package private) class
EntitySaslServer
SaslServer for the ISO/IEC 9798-3 authentication mechanism as defined by RFC 3163. -
Uses of SaslWrapper in org.wildfly.security.sasl.external
Classes in org.wildfly.security.sasl.external that implement SaslWrapper Modifier and Type Class Description (package private) class
ExternalSaslClient
-
Uses of SaslWrapper in org.wildfly.security.sasl.gs2
Classes in org.wildfly.security.sasl.gs2 that implement SaslWrapper Modifier and Type Class Description (package private) class
Gs2SaslClient
SaslClient for the GS2 mechanism family as defined by RFC 5801.(package private) class
Gs2SaslServer
SaslServer for the GS2 mechanism family as defined by RFC 5801. -
Uses of SaslWrapper in org.wildfly.security.sasl.gssapi
Classes in org.wildfly.security.sasl.gssapi that implement SaslWrapper Modifier and Type Class Description (package private) class
AbstractGssapiMechanism
Base class for the SaslServer and SaslClient implementations implementing the GSSAPI mechanism as defined by RFC 4752protected class
AbstractGssapiMechanism.GssapiWrapper
(package private) class
GssapiClient
SaslClient for the GSSAPI mechanism as defined by RFC 4752(package private) class
GssapiServer
SaslServer for the GSSAPI mechanism as defined by RFC 4752 -
Uses of SaslWrapper in org.wildfly.security.sasl.localuser
Classes in org.wildfly.security.sasl.localuser that implement SaslWrapper Modifier and Type Class Description class
LocalUserClient
(package private) class
LocalUserServer
-
Uses of SaslWrapper in org.wildfly.security.sasl.oauth2
Classes in org.wildfly.security.sasl.oauth2 that implement SaslWrapper Modifier and Type Class Description (package private) class
OAuth2SaslClient
An OAuth2 Sasl Client based on RFC-7628.(package private) class
OAuth2SaslServer
An OAuth2 Sasl Server based on RFC-7628. -
Uses of SaslWrapper in org.wildfly.security.sasl.otp
Classes in org.wildfly.security.sasl.otp that implement SaslWrapper Modifier and Type Class Description (package private) class
OTPSaslClient
SaslClient for the OTP SASL mechanism as defined by RFC 2444.(package private) class
OTPSaslServer
SaslServer for the OTP SASL mechanism as defined by RFC 2444. -
Uses of SaslWrapper in org.wildfly.security.sasl.plain
Classes in org.wildfly.security.sasl.plain that implement SaslWrapper Modifier and Type Class Description (package private) class
PlainSaslClient
ThePLAIN
SASL client implementation.(package private) class
PlainSaslServer
-
Uses of SaslWrapper in org.wildfly.security.sasl.scram
Classes in org.wildfly.security.sasl.scram that implement SaslWrapper Modifier and Type Class Description (package private) class
ScramSaslClient
(package private) class
ScramSaslServer
-
Uses of SaslWrapper in org.wildfly.security.sasl.util
Classes in org.wildfly.security.sasl.util that implement SaslWrapper Modifier and Type Class Description class
AbstractDelegatingSaslClient
An abstract base forSaslClient
instances which delegate to anotherSaslClient
.class
AbstractDelegatingSaslServer
An abstract base forSaslServer
instances which delegate to anotherSaslServer
.class
AbstractSaslClient
A base class for SASL client implementations.class
AbstractSaslParticipant
A common base class for SASL participants.class
AbstractSaslServer
A base class for SASL client implementations.class
AuthenticationContextSaslClient
Deprecated.UseAuthenticationContextSaslClient
instead.class
AuthenticationContextSaslServer
Deprecated.UseAuthenticationContextSaslServer
instead.private static class
AuthenticationTimeoutSaslServerFactory.DelegatingTimeoutSaslServer
class
ClientSaslWrapper
ASaslWrapper
which encapsulates aSaslClient
.(package private) class
LocalPrincipalSaslClientFactory.LocalPrincipalSaslClient
class
PrivilegedSaslClient
ASaslClient
which evaluates challenges and wrap/unwrap requests in an privileged context.class
PrivilegedSaslServer
ASaslServer
which evaluates responses and wrap/unwrap requests in an privileged context.class
ServerSaslWrapper
ASaslWrapper
which encapsulates aSaslServer
.Fields in org.wildfly.security.sasl.util declared as SaslWrapper Modifier and Type Field Description static SaslWrapper
SaslWrapper. IDENTITY
The identity wrapper which simply returns the same data that was passed in.private SaslWrapper
AbstractSaslParticipant. wrapper
Methods in org.wildfly.security.sasl.util that return SaslWrapper Modifier and Type Method Description protected SaslWrapper
AbstractSaslParticipant. getWrapper()
Get the current configured SASL wrapper, if any.static SaslWrapper
SaslWrappers. wrapperFor(SaslClient saslClient)
Get a wrapper for the given SASL client.static SaslWrapper
SaslWrappers. wrapperFor(SaslServer saslServer)
Get a wrapper for the given SASL server.Methods in org.wildfly.security.sasl.util with parameters of type SaslWrapper Modifier and Type Method Description protected void
AbstractSaslParticipant. setWrapper(SaslWrapper wrapper)
Set the current configured SASL wrapper, if any.
-