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/quicksetup/org/opends/quicksetup/webstart/WebStartDownloader.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/webstart/WebStartDownloader.java b/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/webstart/WebStartDownloader.java
index ea1b82f..aa708b0 100644
--- a/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/webstart/WebStartDownloader.java
+++ b/opendj3-server-dev/src/quicksetup/org/opends/quicksetup/webstart/WebStartDownloader.java
@@ -22,11 +22,11 @@
  *
  *
  *      Copyright 2006-2009 Sun Microsystems, Inc.
- *      Portions Copyright 2013 ForgeRock AS.
+ *      Portions Copyright 2013-2014 ForgeRock AS.
  */
 
 package org.opends.quicksetup.webstart;
-import org.opends.messages.Message;
+import org.forgerock.i18n.LocalizableMessage;
 
 import java.io.IOException;
 import java.net.MalformedURLException;
@@ -79,7 +79,7 @@
 
   private Status status = Status.DOWNLOADING;
 
-  private Message summary = null;
+  private LocalizableMessage summary = null;
 
   /**
    * This enumeration contains the different Status on which
@@ -170,7 +170,7 @@
    * Gets a summary message of the downloader's current progress.
    * @return String for showing the user progress
    */
-  public Message getSummary() {
+  public LocalizableMessage getSummary() {
     return this.summary;
   }
 
@@ -178,7 +178,7 @@
    * Sets a summary message of the downloader's current progress.
    * @param summary String for showing the user progress
    */
-  public void setSummary(Message summary) {
+  public void setSummary(LocalizableMessage summary) {
     this.summary = summary;
   }
 

--
Gitblit v1.10.0