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 ModifyDNRequestCodec.getNewRDN()
          Get the new RDN
 

Methods in org.apache.directory.shared.ldap.codec.modifyDn with parameters of type Rdn
 void ModifyDNRequestCodec.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> LdifRevertor.reverseMoveAndRename(Entry entry, LdapDN newSuperior, Rdn newRdn, boolean deleteOldRdn)
          Revert a DN to it's previous version by removing the first RDN and adding the given RDN.
static java.util.List<LdifEntry> LdifRevertor.reverseRename(Entry entry, Rdn newRdn, boolean deleteOldRdn)
          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 ModifyDnRequestImpl.getNewRdn()
          Gets the new relative distinguished name for the entry which represents the PDU's newrdn field.
 Rdn InternalModifyDnRequest.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 ModifyDnRequestImpl.setNewRdn(Rdn newRdn)
          Sets the new relative distinguished name for the entry which represents the PDU's newrdn field.
 void InternalModifyDnRequest.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.
 Rdn AntlrDnParser.relativeDistinguishedName(Rdn initialRdn)
          Parses an RDN string.
 

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.
 java.lang.String AntlrDnParser.attributeTypeAndValue(Rdn rdn)
          RFC 4514, Section 3 attributeTypeAndValue = attributeType EQUALS attributeValue RFC 2253, Section 3 attributeTypeAndValue = attributeType "=" attributeValue
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 :
 void FastLdapDnParser.parseRdn(java.lang.String name, Rdn rdn)
          Parses the given name string and fills the given Rdn object.
 void ComplexLdapDnParser.parseRdn(java.lang.String name, Rdn rdn)
          Parses an RDN.
 Rdn AntlrDnParser.relativeDistinguishedName(Rdn initialRdn)
          Parses an RDN string.
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
 void ComplexLdapDnParser.parseDn(java.lang.String name, java.util.List<Rdn> rdns)
          Parses an DN.
static void LdapDnParser.parseInternal(java.lang.String name, java.util.List<Rdn> rdns)
          Parse a DN.
 void AntlrDnParser.relativeDistinguishedNames(java.util.List<Rdn> rdns)
          Parses an DN string.
 

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



Copyright © 2004-2009 The Apache Software Foundation. All Rights Reserved.