Uses of Interface
org.ldaptive.dn.RDnNormalizer
-
Packages that use RDnNormalizer Package Description org.ldaptive.dn -
-
Uses of RDnNormalizer in org.ldaptive.dn
Classes in org.ldaptive.dn that implement RDnNormalizer Modifier and Type Class Description class
DefaultRDnNormalizer
Normalizes a RDN by performing the following operations: lowercase attribute names lowercase attribute values compress duplicate spaces in attribute values escape attribute value characters sort multi value RDNs by name This API provides properties to control attribute name normalization, attribute value normalization and attribute value escaping in order to customize the behavior.Methods in org.ldaptive.dn with parameters of type RDnNormalizer Modifier and Type Method Description String
Dn. format(RDnNormalizer normalizer)
Produces a string representation of this DN.String
Dn. format(RDnNormalizer normalizer, char delimiter, boolean reverse)
Produces a string representation of this DN.String
RDn. format(RDnNormalizer normalizer)
Returns a string representation of this RDN, joining each name value pair with '+'.boolean
Dn. isAncestor(Dn dn, RDnNormalizer normalizer)
Returns whether the supplied DN is an ancestor.boolean
Dn. isDescendant(Dn dn, RDnNormalizer normalizer)
Returns whether the supplied DN is a descendant.boolean
Dn. isSame(Dn dn, RDnNormalizer normalizer)
Returns whether the normalized format of the supplied DN equals the normalized format of this DN.boolean
RDn. isSame(RDn rdn, RDnNormalizer normalizer)
Returns whether the normalized format of the supplied RDN equals the normalized format of this RDN.
-