From 81d36161ce5367fa7aa9a5d99dc8b80eacfa7cdf Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Fri, 24 Jan 2014 14:43:46 +0000
Subject: [PATCH] Checkpoint commit for OPENDJ-1288 :    Migrate I18n and logging support to i18n framework and SLF4J

---
 opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/GeneralMonitoringPanel.java |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/GeneralMonitoringPanel.java b/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/GeneralMonitoringPanel.java
index 84885fd..30fa285 100644
--- a/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/GeneralMonitoringPanel.java
+++ b/opendj3-server-dev/src/guitools/org/opends/guitools/controlpanel/ui/GeneralMonitoringPanel.java
@@ -22,6 +22,7 @@
  *
  *
  *      Copyright 2009-2010 Sun Microsystems, Inc.
+ *      Portions Copyright 2014 ForgeRock AS
  */
 package org.opends.guitools.controlpanel.ui;
 
@@ -31,7 +32,7 @@
 import javax.swing.border.EmptyBorder;
 
 import org.opends.guitools.controlpanel.event.ConfigurationChangeEvent;
-import org.opends.messages.Message;
+import org.forgerock.i18n.LocalizableMessage;
 
 /**
  * Abstract class used to refactor some code among the panels that display the
@@ -50,7 +51,7 @@
   /**
    * The message to express that the value was not found.
    */
-  protected static Message NO_VALUE_SET =
+  protected static LocalizableMessage NO_VALUE_SET =
     INFO_CTRL_PANEL_NO_MONITORING_VALUE.get();
 
   /**
@@ -63,9 +64,9 @@
   /**
    * {@inheritDoc}
    */
-  public Message getTitle()
+  public LocalizableMessage getTitle()
   {
-    return Message.EMPTY;
+    return LocalizableMessage.EMPTY;
   }
 
   /**

--
Gitblit v1.10.0