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 / LDAPExtendedOperation.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-04-13  |  472 b   |  20 lines

  1. package netscape.ldap;
  2.  
  3. public class LDAPExtendedOperation {
  4.    private String m_oid;
  5.    private byte[] m_vals;
  6.  
  7.    public LDAPExtendedOperation(String var1, byte[] var2) {
  8.       this.m_oid = var1;
  9.       this.m_vals = var2;
  10.    }
  11.  
  12.    public String getID() {
  13.       return this.m_oid;
  14.    }
  15.  
  16.    public byte[] getValue() {
  17.       return this.m_vals;
  18.    }
  19. }
  20.