Modifier and Type | Method and Description |
---|---|
RDN |
ModifyDNRequestDsml.getNewRDN()
Get the new RDN
|
Modifier and Type | Method and Description |
---|---|
void |
ModifyDNRequestDsml.setNewRDN(RDN newRDN)
Set the new RDN
|
Modifier and Type | Method and Description |
---|---|
RDN |
ModifyDNRequestCodec.getNewRDN()
Get the new RDN
|
Modifier and Type | Method and Description |
---|---|
void |
ModifyDNRequestCodec.setNewRDN(RDN newRDN)
Set the new RDN
|
Modifier and Type | Method and Description |
---|---|
static List<LdifEntry> |
LdifRevertor.reverseMoveAndRename(Entry entry,
DN newSuperior,
RDN newRdn,
boolean deleteOldRdn)
Revert a DN to it's previous version by removing the first RDN and adding the given RDN.
|
static 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.
|
Modifier and Type | Method and Description |
---|---|
RDN |
ModifyDnRequestImpl.getNewRdn()
Gets the new relative distinguished name for the entry which represents
the PDU's newrdn field.
|
Modifier and Type | Method and Description |
---|---|
void |
ModifyDnRequestImpl.setNewRdn(RDN newRdn)
Sets the new relative distinguished name for the entry which represents
the PDU's newrdn field.
|
Modifier and Type | Method and Description |
---|---|
RDN |
InternalModifyDnRequest.getNewRdn()
Gets the new relative distinguished name for the entry which represents
the PDU's newrdn field.
|
Modifier and Type | Method and Description |
---|---|
void |
InternalModifyDnRequest.setNewRdn(RDN newRdn)
Sets the new relative distinguished name for the entry which represents
the PDU's newrdn field.
|
Modifier and Type | Field and Description |
---|---|
static RDN |
RDN.EMPTY_RDN
An empty RDN
|
Modifier and Type | Field and Description |
---|---|
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)
|
Modifier and Type | Method and Description |
---|---|
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.
|
RDN |
DN.remove(int posn) |
Modifier and Type | Method and Description |
---|---|
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.
|
Iterator<RDN> |
DN.iterator() |
Modifier and Type | Method and Description |
---|---|
DN |
DN.add(int pos,
RDN newRdn)
Adds a single RDN to a specific position.
|
DN |
DN.add(RDN newRdn)
Adds a single RDN to the (leaf) end of this name.
|
DN |
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
|
int |
RDN.compareTo(RDN rdn)
Compares two RDNs.
|
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).
|
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
RDN(RDN rdn)
Constructs an Rdn from the given rdn.
|
Copyright © 2003–2015 The Apache Software Foundation. All rights reserved.