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.message   
org.apache.directory.shared.ldap.message.internal   
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.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.
 

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.
 

Uses of RDN in org.apache.directory.shared.ldap.message.internal
 

Methods in org.apache.directory.shared.ldap.message.internal that return RDN
 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.internal with parameters of type RDN
 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  List<RDN> DN.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(ObjectInput in)
          Deserialize a RDN instance We read back the data to create a new RDB.
 RDN DN.getRdn()
          Retrieves the last (leaf) component of this name.
 RDN DN.getRdn(int posn)
          Retrieves a component of this name.
 RDN RDN.normalize(Map<String,OidNormalizer> oidsMap)
          Transform a RDN by changing the value to its OID counterpart and normalizing the value accordingly to its type.
 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
 Enumeration<RDN> DN.getAllRdn()
          Retrieves the components of this name as an enumeration of strings.
 List<RDN> DN.getRdns()
          Retrieves all the components of this name.
 

Methods in org.apache.directory.shared.ldap.name with parameters of type RDN
 Name DN.add(int pos, RDN newRdn)
          Adds a single RDN to a specific position.
 Name DN.add(RDN newRdn)
          Adds a single RDN to the (leaf) end of this name.
 Name DN.addNormalized(RDN newRdn)
          Adds a single normalized RDN to the (leaf) end of this name.
 String AntlrDnParser.attributeTypeAndValue(RDN rdn)
          RFC 4514, Section 3 attributeTypeAndValue = attributeType EQUALS attributeValue RFC 2253, Section 3 attributeTypeAndValue = attributeType "=" attributeValue
static void RdnParser.parse(String dn, RDN rdn)
          Parse a NameComponent :
 void FastDnParser.parseRdn(String name, RDN rdn)
          Parses the given name string and fills the given Rdn object.
 void ComplexDnParser.parseRdn(String name, RDN rdn)
          Parses an RDN.
 RDN AntlrDnParser.relativeDistinguishedName(RDN initialRdn)
          Parses an RDN string.
static void RdnSerializer.serialize(RDN rdn, 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 ComplexDnParser.parseDn(String name, List<RDN> rdns)
          Parses an DN.
static void DnParser.parseInternal(String name, List<RDN> rdns)
          Parse a DN.
 void AntlrDnParser.relativeDistinguishedNames(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-2010 The Apache Software Foundation. All Rights Reserved.