home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / ldapjdk.jar / com / netscape / sasl / SASLClientMechanismDriver.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-13  |  596 b   |  16 lines

  1. package com.netscape.sasl;
  2.  
  3. import java.util.Properties;
  4.  
  5. public interface SASLClientMechanismDriver {
  6.    byte[] startAuthentication(String var1, String var2, String var3, Properties var4, SASLClientCB var5) throws SASLException;
  7.  
  8.    byte[] evaluateResponse(byte[] var1) throws SASLException;
  9.  
  10.    boolean isComplete();
  11.  
  12.    SASLSecurityLayer getSecurityLayer() throws SASLException;
  13.  
  14.    String getMechanismName();
  15. }
  16.