Uses of Class
org.forgerock.opendj.ldap.Rdn
-
Packages that use Rdn Package Description org.forgerock.openam.ldap This package contains utility methods to ease/unify development when using the OpenDJ LDAP SDK.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. -
-
Uses of Rdn in org.forgerock.openam.ldap
Methods in org.forgerock.openam.ldap with parameters of type Rdn Modifier and Type Method Description static StringLDAPUtils. rdnType(Rdn rdn)When provided an RDN, returns the attribute type name.static StringLDAPUtils. rdnValue(Rdn rdn)When provided an RDN, returns the value part. -
Uses of Rdn in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return Rdn Modifier and Type Method Description static RdnRdn. maxValue()Returns a constant containing a special RDN which sorts after any RDN other than itself.static RdnRdn. minValue()Returns a constant containing a special RDN which sorts before any RDN other than itself.RdnDn. rdn()Returns the RDN of this DN, ornullif this DN is the empty DN.RdnDn. rdn(int index)Returns the RDN at the specified index for this DN, ornullif no such RDN exists.static RdnRdn. valueOf(String rdn)Parses the provided LDAP string representation of an RDN using the default schema.static RdnRdn. 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 DnDn. child(Rdn rdn)Returns a DN which is an immediate child of this DN and having the specified RDN.intRdn. compareTo(Rdn rdn)DnDn. 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 RdnModifyDnRequest. 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 ModifyDnRequestRequests. newModifyDnRequest(Dn name, Rdn newRDN)Creates a new modify DN request using the provided distinguished name and new RDN.ModifyDnRequestModifyDnRequest. setNewRdn(Rdn rdn)Sets the new RDN of the entry to be renamed.
-