From 34e39aab27ea4fb92659a6888933db08099c7e41 Mon Sep 17 00:00:00 2001 From: "Neil A. Wilson" Date: Wed, 29 May 2019 10:15:29 -0500 Subject: [PATCH] Make RDN.getNameValueParis public --- docs/release-notes.html | 4 +++- src/com/unboundid/ldap/sdk/RDN.java | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/release-notes.html b/docs/release-notes.html index c4f7e5b48..1d6659762 100644 --- a/docs/release-notes.html +++ b/docs/release-notes.html @@ -155,7 +155,9 @@

Version 4.0.11

would have simply used an all-lowercase representation of the provided attribute name rather than an all-lowercase representation of the primary name. Also updated the logic used to determine whether an RDN has a specified name or - name-value pair to handle the use of alternate names. + name-value pair to handle the use of alternate names, and exposed the + RDN.getNameValuePairs method to make it easier to work with an RDN's + name-value pairs.

diff --git a/src/com/unboundid/ldap/sdk/RDN.java b/src/com/unboundid/ldap/sdk/RDN.java index 700871e4c..6ba46fe6a 100644 --- a/src/com/unboundid/ldap/sdk/RDN.java +++ b/src/com/unboundid/ldap/sdk/RDN.java @@ -1336,7 +1336,7 @@ public byte[][] getByteArrayAttributeValues() * * @return A sorted set of the name-value pairs that comprise this RDN. */ - SortedSet getNameValuePairs() + public SortedSet getNameValuePairs() { if (nameValuePairs == null) {