From 664eac71955fcceba752801c55b091a197546b84 Mon Sep 17 00:00:00 2001
From: Jean-Noël Rouvignac <jean-noel.rouvignac@forgerock.com>
Date: Fri, 05 Aug 2016 19:09:24 +0000
Subject: [PATCH] Partial OPENDJ-2625 Convert all code that uses JNDI to use the SDK instead
---
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/nodes/BrowserNodeInfo.java | 27 ++++++++++++---------------
1 files changed, 12 insertions(+), 15 deletions(-)
diff --git a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/nodes/BrowserNodeInfo.java b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/nodes/BrowserNodeInfo.java
index 7810925..26632c0 100644
--- a/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/nodes/BrowserNodeInfo.java
+++ b/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/nodes/BrowserNodeInfo.java
@@ -32,31 +32,28 @@
/**
- * Returns <CODE>true</CODE> if the displayed entry is the top entry of a
- * suffix and <CODE>false</CODE> otherwise.
- * @return <CODE>true</CODE> if the displayed entry is the top entry of a
- * suffix and <CODE>false</CODE> otherwise.
+ * Returns whether the displayed entry is the top entry of a suffix.
+ * @return {@code true} if the displayed entry is the top entry of a suffix,
+ * {@code false} otherwise.
*/
boolean isSuffix();
/**
- * Returns <CODE>true</CODE> if the displayed entry is the root node of the
- * server (the dn="" entry) and <CODE>false</CODE> otherwise.
- * @return <CODE>true</CODE> if the displayed entry is the root node of the
- * server (the dn="" entry) and <CODE>false</CODE> otherwise.
+ * Returns whether the displayed entry is the root node of the
+ * server (the dn="" entry)..
+ * @return {@code true} if the displayed entry is the root node of the
+ * server (the dn="" entry) and {@code false} otherwise.
*/
boolean isRootNode();
/**
- * Returns <CODE>true</CODE> if the displayed entry is not located on the
+ * Returns whether the displayed entry is not located on the
* current server. An entry is declared 'remote' when the host/port of
- * getURL() is different from the host/port of the DirContext associated to
- * the browser controller. Returns <CODE>false</CODE> otherwise.
- * @return <CODE>true</CODE> if the displayed entry is not located on the
- * current server. An entry is declared 'remote' when the host/port of
- * getURL() is different from the host/port of the DirContext associated to
- * the browser controller. Returns <CODE>false</CODE> otherwise.
+ * getURL() is different from the host/port of the connection associated to
+ * the browser controller.
+ * @return {@code true} if the displayed entry is not located on the
+ * current server, {@code false} otherwise.
*/
boolean isRemote();
--
Gitblit v1.10.0