Uses of Class
org.apache.directory.shared.ldap.name.Rdn

Packages that use Rdn
org.apache.directory.shared.ldap.codec.modifyDn   
org.apache.directory.shared.ldap.ldif   
org.apache.directory.shared.ldap.message   
org.apache.directory.shared.ldap.name   
 

Uses of Rdn in org.apache.directory.shared.ldap.codec.modifyDn
 

Methods in org.apache.directory.shared.ldap.codec.modifyDn that return Rdn
 Rdn ModifyDNRequest.getNewRDN()
          Get the new RDN
 

Methods in org.apache.directory.shared.ldap.codec.modifyDn with parameters of type Rdn
 void ModifyDNRequest.setNewRDN(Rdn newRDN)
          Set the new RDN
 

Uses of Rdn in org.apache.directory.shared.ldap.ldif
 

Methods in org.apache.directory.shared.ldap.ldif with parameters of type Rdn
static java.util.List<LdifEntry> LdifUtils.reverseModifyRdn(javax.naming.directory.Attributes t0, LdapDN t1_parentDn, LdapDN t0_dn, Rdn t1_rdn)
          Compute a reverse LDIF for a forward change which if in LDIF format would represent a modrdn operation.
static java.util.List<LdifEntry> LdifUtils.reverseRename(javax.naming.directory.Attributes t0, LdapDN t0_dn, Rdn t1_rdn)
          Revert a DN to it's previous version by removing the first RDN and adding the given RDN
 

Uses of Rdn in org.apache.directory.shared.ldap.message
 

Methods in org.apache.directory.shared.ldap.message that return Rdn
 Rdn ModifyDnRequest.getNewRdn()
          Gets the new relative distinguished name for the entry which represents the PDU's newrdn field.
 Rdn ModifyDnRequestImpl.getNewRdn()
          Gets the new relative distinguished name for the entry which represents the PDU's newrdn field.
 

Methods in org.apache.directory.shared.ldap.message with parameters of type Rdn
 void ModifyDnRequest.setNewRdn(Rdn newRdn)
          Sets the new relative distinguished name for the entry which represents the PDU's newrdn field.
 void ModifyDnRequestImpl.setNewRdn(Rdn newRdn)
          Sets the new relative distinguished name for the entry which represents the PDU's newrdn field.
 

Uses of Rdn in org.apache.directory.shared.ldap.name
 

Fields in org.apache.directory.shared.ldap.name with type parameters of type Rdn
protected  java.util.List<Rdn> LdapDN.rdns
          The RDNs that are elements of the DN NOTE THAT THESE ARE IN THE OPPOSITE ORDER FROM THAT IMPLIED BY THE JAVADOC! Rdn[0] is rdns.get(n) and Rdn[n] is rdns.get(0)
 

Methods in org.apache.directory.shared.ldap.name that return Rdn
static Rdn RdnSerializer.deserialize(java.io.ObjectInput in)
          Deserialize a RDN instance We read back the data to create a new RDB.
 Rdn LdapDN.getRdn()
          Retrieves the last (leaf) component of this name.
 Rdn LdapDN.getRdn(int posn)
          Retrieves a component of this name.
 

Methods in org.apache.directory.shared.ldap.name that return types with arguments of type Rdn
 java.util.Enumeration<Rdn> LdapDN.getAllRdn()
          Retrieves the components of this name as an enumeration of strings.
 java.util.List<Rdn> LdapDN.getRdns()
          Retrieves all the components of this name.
 

Methods in org.apache.directory.shared.ldap.name with parameters of type Rdn
 javax.naming.Name LdapDN.add(int pos, Rdn newRdn)
          Adds a single RDN to a specific position.
 javax.naming.Name LdapDN.add(Rdn newRdn)
          Adds a single RDN to the (leaf) end of this name.
 javax.naming.Name LdapDN.addNormalized(Rdn newRdn)
          Adds a single normalized RDN to the (leaf) end of this name.
static int RdnParser.parse(byte[] dn, Position pos, Rdn rdn)
          Parse a NameComponent :
static int RdnParser.parse(java.lang.String dn, Position pos, Rdn rdn)
          Parse a NameComponent :
static void RdnParser.parse(java.lang.String dn, Rdn rdn)
          Parse a NameComponent :
static void RdnSerializer.serialize(Rdn rdn, java.io.ObjectOutput out)
          Serialize a RDN instance A RDN is composed of on to many ATAVs (AttributeType And Value).
 

Method parameters in org.apache.directory.shared.ldap.name with type arguments of type Rdn
static void LdapDnParser.parseInternal(byte[] dn, java.util.List<Rdn> rdns)
          Parse a DN
static void LdapDnParser.parseInternal(java.lang.String dn, java.util.List<Rdn> rdns)
          Parse a DN
 

Constructors in org.apache.directory.shared.ldap.name with parameters of type Rdn
Rdn(Rdn rdn)
          Constructs an Rdn from the given rdn.
 



Copyright © 2003-2009 Apache Software Foundation. All Rights Reserved.