From 80c58327faaa4873369f6bb949e62792c2f708e0 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.
---
opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java b/opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java
index 5a79858..f86a4b7 100644
--- a/opends/src/guitools/org/opends/guitools/statuspanel/ServerStatusDescriptor.java
+++ b/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