From 8a7ff716fed166cd42ec42faaabb7d70e317f884 Mon Sep 17 00:00:00 2001
From: Matthew Swift <matthew.swift@forgerock.com>
Date: Wed, 16 Nov 2016 14:40:03 +0000
Subject: [PATCH] OPENDJ-3505 Provide method for obtaining the user provided name of a component
---
opendj-config/src/main/java/org/forgerock/opendj/config/Configuration.java | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/opendj-config/src/main/java/org/forgerock/opendj/config/Configuration.java b/opendj-config/src/main/java/org/forgerock/opendj/config/Configuration.java
index 12ad34a..db7905d 100644
--- a/opendj-config/src/main/java/org/forgerock/opendj/config/Configuration.java
+++ b/opendj-config/src/main/java/org/forgerock/opendj/config/Configuration.java
@@ -25,12 +25,18 @@
/**
* Gets the DN of the LDAP entry associated with this configuration.
*
- * @return Returns the DN of the LDAP entry associated with this
- * configuration.
+ * @return The DN of the LDAP entry associated with this configuration.
*/
DN dn();
/**
+ * Gets the RDN value of the LDAP entry associated with this configuration.
+ *
+ * @return The RDN value of the LDAP entry associated with this configuration.
+ */
+ String name();
+
+ /**
* Gets the configuration class associated with this configuration.
*
* @return Returns the configuration class associated with this
--
Gitblit v1.10.0