API Overview API Index Package Overview Direct link to this page
JDK 1.6
  javax.security.sasl. SaslServer View Source
Author(s)
Rosanna Lee
Rob Weltman
Since
1.5
Version
Serial
Hierarchy
 SaslServer
Subinterfaces
Description
public interface SaslServer
  Performs SASL authentication as a server.
See also:    Sasl SaslServerFactory
Methods
Hide/Show inherited methods
public void dispose () throws SaslException
  Disposes of any system resources or security-sensitive information the SaslServer might be using.
public byte evaluateResponse (byte[] response) throws SaslException
  Evaluates the response data and generates a challenge.
public String getAuthorizationID ()
  Reports the authorization ID in effect for the client of this session.
public String getMechanismName ()
  Returns the IANA-registered mechanism name of this SASL server.
public Object getNegotiatedProperty (String propName)
  Retrieves the negotiated property.
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 client.
public byte wrap (byte[] outgoing, int offset, int len) throws SaslException
  Wraps a byte array to be sent to the client.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar