home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / nav40.z / ldap10.jar / netscape / ldap / LDAPExtendedOperation.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-08-13  |  538 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.