From c8447177b6c9d155ea48009583a20ecce7ffd8c6 Mon Sep 17 00:00:00 2001
From: jvergara <jvergara@localhost>
Date: Mon, 18 Jan 2010 22:27:40 +0000
Subject: [PATCH] Fix for issue 3901 (Setup fails when inserting a server in a replication topology with large umount of data) - Add a 'Runtime Options' step in the wizard.  By default this will contain just two labels and two buttons: Server Runtime Options: Use Default <button to change> Import Options: Use Default <button to change>

---
 opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java |   12 ++++--------
 1 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java b/opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java
index 0f18997..60b8e84 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/util/InProcessServerController.java
@@ -22,7 +22,7 @@
  * CDDL HEADER END
  *
  *
- *      Copyright 2008 Sun Microsystems, Inc.
+ *      Copyright 2008-2010 Sun Microsystems, Inc.
  */
 
 package org.opends.quicksetup.util;
@@ -88,11 +88,11 @@
    */
   static private boolean serverHasBeenStarted = false;
 
-  static private ErrorLogPublisher startupErrorPublisher;
+  static private ErrorLogPublisher<?> startupErrorPublisher;
 
-  static private AccessLogPublisher startupAccessPublisher;
+  static private AccessLogPublisher<?> startupAccessPublisher;
 
-  static private DebugLogPublisher startupDebugPublisher;
+  static private DebugLogPublisher<?> startupDebugPublisher;
 
   /**
    * Pushes messages published by the server loggers into OperationOutput.
@@ -110,10 +110,6 @@
       // do nothing
     }
 
-    ServerControllerTextWriter(OperationOutput output) {
-      setOutput(output);
-    }
-
     public void setOutput(OperationOutput ouput) {
       this.output = ouput;
     }

--
Gitblit v1.10.0