From 4ae9f779b7fa8f1b673b0ac33370afb55a68a1a2 Mon Sep 17 00:00:00 2001
From: lutoff <lutoff@localhost>
Date: Mon, 05 Jan 2009 10:39:52 +0000
Subject: [PATCH] These changes have 3 different scope: 1) This change will allow to extend the dsreplication userdata objects. 2) The set of modification will also allow to extend the server     descriptor used by the internal admin 3) With the current implementation, if the server is configured     in manual mode, backend cannot be disabled (admin framework     will check aggregation constraint for this associated     LocalBackendWorkflowElement). This will block the import     for instance.     The modification relaxes this constraint.

---
 opends/src/server/org/opends/server/tools/dsreplication/ReplicationUserData.java |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/opends/src/server/org/opends/server/tools/dsreplication/ReplicationUserData.java b/opends/src/server/org/opends/server/tools/dsreplication/ReplicationUserData.java
index bbb710c..5ab46c5 100644
--- a/opends/src/server/org/opends/server/tools/dsreplication/ReplicationUserData.java
+++ b/opends/src/server/org/opends/server/tools/dsreplication/ReplicationUserData.java
@@ -22,7 +22,7 @@
  * CDDL HEADER END
  *
  *
- *      Copyright 2008 Sun Microsystems, Inc.
+ *      Copyright 2008-2009 Sun Microsystems, Inc.
  */
 
 package org.opends.server.tools.dsreplication;
@@ -35,7 +35,7 @@
  * mode the ReplicationCliArgumentParser is not enough.
  *
  */
-abstract class ReplicationUserData
+public abstract class ReplicationUserData
 {
   private LinkedList<String> baseDNs = new LinkedList<String>();
   private String adminUid;
@@ -45,7 +45,7 @@
    * Returns the Global Administrator password.
    * @return the Global Administrator password.
    */
-  String getAdminPwd()
+  public String getAdminPwd()
   {
     return adminPwd;
   }
@@ -54,7 +54,7 @@
    * Sets the Global Administrator password.
    * @param adminPwd the Global Administrator password.
    */
-  void setAdminPwd(String adminPwd)
+  public void setAdminPwd(String adminPwd)
   {
     this.adminPwd = adminPwd;
   }
@@ -63,7 +63,7 @@
    * Returns the Global Administrator UID.
    * @return the Global Administrator UID.
    */
-  String getAdminUid()
+  public String getAdminUid()
   {
     return adminUid;
   }
@@ -72,7 +72,7 @@
    * Sets the Global Administrator UID.
    * @param adminUid the Global Administrator UID.
    */
-  void setAdminUid(String adminUid)
+  public void setAdminUid(String adminUid)
   {
     this.adminUid = adminUid;
   }
@@ -81,7 +81,7 @@
    * Returns the Base DNs to replicate.
    * @return the Base DNs to replicate.
    */
-  LinkedList<String> getBaseDNs()
+  public LinkedList<String> getBaseDNs()
   {
     return new LinkedList<String>(baseDNs);
   }
@@ -90,7 +90,7 @@
    * Sets the Base DNs to replicate.
    * @param baseDNs the Base DNs to replicate.
    */
-  void setBaseDNs(LinkedList<String> baseDNs)
+  public void setBaseDNs(LinkedList<String> baseDNs)
   {
     this.baseDNs.clear();
     this.baseDNs.addAll(baseDNs);

--
Gitblit v1.10.0