From cfc513043c5830b5a967733066068c7097b42e3c Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Wed, 15 Aug 2007 21:34:53 +0000
Subject: [PATCH] This commit is a step toward getting OpenDS internationalized. There are still issues to be resolved before we can declare that we are internationalized but this commit covers the bulk of changes needed at this time.

---
 opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java b/opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java
index 5a79858..f86a4b7 100644
--- a/opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java
+++ b/opendj-sdk/opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java
@@ -27,6 +27,8 @@
 
 package org.opends.guitools.statuspanel;
 
+import org.opends.messages.Message;
+
 import java.io.File;
 import java.util.Set;
 
@@ -44,7 +46,7 @@
   private File installPath;
   private String openDSVersion;
   private String javaVersion;
-  private String errorMsg;
+  private Message errorMsg;
   private boolean isAuthenticated;
 
   /**
@@ -283,7 +285,7 @@
    * @return the error message that we encountered generating this server
    * status descriptor.
    */
-  public String getErrorMessage()
+  public Message getErrorMessage()
   {
     return errorMsg;
   }
@@ -294,7 +296,7 @@
    * @param errorMsg the error message that we encountered generating this
    * server status descriptor.
    */
-  public void setErrorMessage(String errorMsg)
+  public void setErrorMessage(Message errorMsg)
   {
     this.errorMsg = errorMsg;
   }

--
Gitblit v1.10.0