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 / netscape / ldap / client / opers / JDAPProtocolOp.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-13  |  1.1 KB  |  33 lines

  1. package netscape.ldap.client.opers;
  2.  
  3. import netscape.ldap.ber.stream.BERElement;
  4.  
  5. public interface JDAPProtocolOp {
  6.    int BIND_REQUEST = 0;
  7.    int BIND_RESPONSE = 1;
  8.    int UNBIND_REQUEST = 2;
  9.    int SEARCH_REQUEST = 3;
  10.    int SEARCH_RESPONSE = 4;
  11.    int SEARCH_RESULT = 5;
  12.    int MODIFY_REQUEST = 6;
  13.    int MODIFY_RESPONSE = 7;
  14.    int ADD_REQUEST = 8;
  15.    int ADD_RESPONSE = 9;
  16.    int DEL_REQUEST = 10;
  17.    int DEL_RESPONSE = 11;
  18.    int MODIFY_RDN_REQUEST = 12;
  19.    int MODIFY_RDN_RESPONSE = 13;
  20.    int COMPARE_REQUEST = 14;
  21.    int COMPARE_RESPONSE = 15;
  22.    int ABANDON_REQUEST = 16;
  23.    int SEARCH_RESULT_REFERENCE = 19;
  24.    int EXTENDED_REQUEST = 23;
  25.    int EXTENDED_RESPONSE = 24;
  26.  
  27.    int getType();
  28.  
  29.    BERElement getBERElement();
  30.  
  31.    String toString();
  32. }
  33.