Uses of Class
org.forgerock.opendj.ldap.Rdn
-
Packages that use Rdn Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes.org.forgerock.opendj.ldap.messages Classes and interfaces for core LDAP requests/responses.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.replication.protocol This package contains the code used by the replication server and by the code running on the Directory Server side to exchange their information.org.opends.server.types.operation Contains a number of interfaces that are implemented by the various types of Directory Server operations.org.opends.server.util Contains implementations for various Directory Server utility classes and methods which may be used throughout the server but do not necessarily fit in elsewhere. -
-
Uses of Rdn in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return Rdn Modifier and Type Method Description static Rdn
Rdn. maxValue()
Returns a constant containing a special RDN which sorts after any RDN other than itself.static Rdn
Rdn. minValue()
Returns a constant containing a special RDN which sorts before any RDN other than itself.Rdn
Dn. rdn()
Returns the RDN of this DN, ornull
if this DN is the empty DN.Rdn
Dn. rdn(int index)
Returns the RDN at the specified index for this DN, ornull
if no such RDN exists.static Rdn
Rdn. valueOf(String rdn)
Parses the provided LDAP string representation of an RDN using the default schema.static Rdn
Rdn. valueOf(String rdn, Schema schema)
Parses the provided LDAP string representation of a RDN using the provided schema.Methods in org.forgerock.opendj.ldap that return types with arguments of type Rdn Modifier and Type Method Description Iterator<Rdn>
Dn. iterator()
Returns an iterator of the RDNs contained in this DN.Methods in org.forgerock.opendj.ldap with parameters of type Rdn Modifier and Type Method Description Dn
Dn. child(Rdn rdn)
Returns a DN which is an immediate child of this DN and having the specified RDN.int
Rdn. compareTo(Rdn rdn)
Dn
Dn. rename(Rdn newRdn, Dn newSuperior)
Returns a DN whose value is the result of applying LDAP modify DN semantics to this DN. -
Uses of Rdn in org.forgerock.opendj.ldap.messages
Methods in org.forgerock.opendj.ldap.messages that return Rdn Modifier and Type Method Description Rdn
ModifyDnRequest. getNewRdn()
Returns the new RDN of the entry to be renamed.Methods in org.forgerock.opendj.ldap.messages with parameters of type Rdn Modifier and Type Method Description static ModifyDnRequest
Requests. newModifyDnRequest(Dn name, Rdn newRDN)
Creates a new modify DN request using the provided distinguished name and new RDN.ModifyDnRequest
ModifyDnRequest. setNewRdn(Rdn rdn)
Sets the new RDN of the entry to be renamed. -
Uses of Rdn in org.opends.server.core
Methods in org.opends.server.core that return Rdn Modifier and Type Method Description Rdn
ModifyDnOperation. getNewRDN()
Methods in org.opends.server.core with parameters of type Rdn Modifier and Type Method Description void
ModifyDnOperation. setNewRDN(Rdn newRDN)
-
Uses of Rdn in org.opends.server.replication.protocol
Methods in org.opends.server.replication.protocol that return Rdn Modifier and Type Method Description Rdn
ModifyDNMsg. getNewRDN()
Get the new RDN of this operation.Rdn
ByteArrayScanner. nextRdn()
Reads the next RDN.Methods in org.opends.server.replication.protocol with parameters of type Rdn Modifier and Type Method Description ByteArrayBuilder
ByteArrayBuilder. appendRdn(Rdn rdn)
Append an RDN to this ByteArrayBuilder by converting it to a String then encoding that string to a UTF-8 byte array.void
ModifyDNMsg. setNewRDN(Rdn newRDN)
Set the new RDN of this operation.Constructors in org.opends.server.replication.protocol with parameters of type Rdn Constructor Description ModifyDNMsg(Dn dn, CSN csn, UUID entryUUID, UUID newSuperiorEntryUUID, boolean deleteOldRdn, Dn newSuperior, Rdn newRDN)
Construct a new Modify DN message (no mods).ModifyDNMsg(Dn dn, CSN csn, UUID entryUUID, UUID newSuperiorEntryUUID, boolean deleteOldRdn, Dn newSuperior, Rdn newRDN, List<Modification> mods)
Construct a new Modify DN message (with mods).ModifyDNMsg(CSN csn, Dn dn, UUID entryUUID, Rdn newRdn, Dn newSuperior, UUID newSuperiorEntryUUID, boolean deleteOldRdn, byte[] encodedMods, byte[] encodedEclIncludes)
Creates a new ModifyDN message. -
Uses of Rdn in org.opends.server.types.operation
Methods in org.opends.server.types.operation that return Rdn Modifier and Type Method Description Rdn
PostOperationModifyDNOperation. getNewRDN()
Retrieves the new RDN to use for the entry.Rdn
PostResponseModifyDNOperation. getNewRDN()
Retrieves the new RDN to use for the entry.Rdn
PostSynchronizationModifyDNOperation. getNewRDN()
Retrieves the new RDN to use for the entry.Rdn
PreOperationModifyDNOperation. getNewRDN()
Retrieves the new RDN to use for the entry.Rdn
PreParseModifyDNOperation. getNewRDN()
Retrieves the newRDN as included in the request from the client.Rdn
SubordinateModifyDNOperation. getNewRDN()
Retrieves the new RDN to use for the entry.Methods in org.opends.server.types.operation with parameters of type Rdn Modifier and Type Method Description void
PreParseModifyDNOperation. setNewRDN(Rdn newRDN)
Specifies the newRDN as included in the request from the client. -
Uses of Rdn in org.opends.server.util
Methods in org.opends.server.util with parameters of type Rdn Modifier and Type Method Description static String
StaticUtils. getObjectClassName(Rdn rdn)
Best effort to find structural object class name of the provided base entry RDN.
-