Package org.wildfly.security.sasl.util
Class ServerSaslWrapper
- java.lang.Object
-
- org.wildfly.security.sasl.util.ServerSaslWrapper
-
- All Implemented Interfaces:
SaslWrapper
public final class ServerSaslWrapper extends Object implements SaslWrapper
ASaslWrapper
which encapsulates aSaslServer
.- Author:
- David M. Lloyd
-
-
Field Summary
Fields Modifier and Type Field Description private SaslServer
saslServer
-
Fields inherited from interface org.wildfly.security.sasl.util.SaslWrapper
IDENTITY
-
-
Constructor Summary
Constructors Constructor Description ServerSaslWrapper(SaslServer saslServer)
Construct a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
unwrap(byte[] incoming, int offset, int len)
byte[]
wrap(byte[] outgoing, int offset, int len)
-
-
-
Field Detail
-
saslServer
private final SaslServer saslServer
-
-
Constructor Detail
-
ServerSaslWrapper
public ServerSaslWrapper(SaslServer saslServer)
Construct a new instance.- Parameters:
saslServer
- theSaslServer
to delegate wrap/unwrap calls to.
-
-
Method Detail
-
wrap
public byte[] wrap(byte[] outgoing, int offset, int len) throws SaslException
- Specified by:
wrap
in interfaceSaslWrapper
- Throws:
SaslException
-
unwrap
public byte[] unwrap(byte[] incoming, int offset, int len) throws SaslException
- Specified by:
unwrap
in interfaceSaslWrapper
- Throws:
SaslException
-
-