API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.security.sasl. SaslClient View Source
Author(s)
Rosanna Lee
Rob Weltman
Since
1.5
Version
Serial
Hierarchy
 SaslClient
Subinterfaces
Description
public interface SaslClient
  Performs SASL authentication as a client.
See also:    Sasl SaslClientFactory
Methods
Hide/Show inherited methods
public void dispose () throws SaslException
  Disposes of any system resources or security-sensitive information the SaslClient might be using.
public byte evaluateChallenge (byte[] challenge) throws SaslException
  Evaluates the challenge data and generates a response.
public String getMechanismName ()
  Returns the IANA-registered mechanism name of this SASL client.
public Object getNegotiatedProperty (String propName)
  Retrieves the negotiated property.
public boolean hasInitialResponse ()
  Determines whether this mechanism has an optional initial response.
public boolean isComplete ()
  Determines whether the authentication exchange has completed.
public byte unwrap (byte[] incoming, int offset, int len) throws SaslException
  Unwraps a byte array received from the server.
public byte wrap (byte[] outgoing, int offset, int len) throws SaslException
  Wraps a byte array to be sent to the server.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar