jdk/src/share/classes/com/sun/jndi/ldap/LdapAttribute.java
changeset 25808 e113d0a0fde0
parent 23882 7dbf42ed83ef
equal deleted inserted replaced
25807:6c325960c9ee 25808:e113d0a0fde0
    32 import javax.naming.directory.*;
    32 import javax.naming.directory.*;
    33 
    33 
    34 /**
    34 /**
    35   * This subclass is used by LDAP to implement the schema calls.
    35   * This subclass is used by LDAP to implement the schema calls.
    36   * Basically, it keeps track of which context it is an attribute of
    36   * Basically, it keeps track of which context it is an attribute of
    37   * so it can get the schema for that cotnext.
    37   * so it can get the schema for that context.
    38   *
    38   *
    39   * @author Jon Ruiz
    39   * @author Jon Ruiz
    40   */
    40   */
    41 final class LdapAttribute extends BasicAttribute {
    41 final class LdapAttribute extends BasicAttribute {
    42 
    42 
   132         throws IOException {
   132         throws IOException {
   133 
   133 
   134         // setup internal state
   134         // setup internal state
   135         this.setBaseCtxInfo();
   135         this.setBaseCtxInfo();
   136 
   136 
   137         // let the ObjectOutpurStream do the real work of serialization
   137         // let the ObjectOutputStream do the real work of serialization
   138         out.defaultWriteObject();
   138         out.defaultWriteObject();
   139     }
   139     }
   140 
   140 
   141     /**
   141     /**
   142      * sets the information needed to reconstruct the baseCtx if
   142      * sets the information needed to reconstruct the baseCtx if