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/MonoServerReplicationUserData.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/tools/dsreplication/MonoServerReplicationUserData.java b/opends/src/server/org/opends/server/tools/dsreplication/MonoServerReplicationUserData.java
index 916d003..ccd5fb3 100644
--- a/opends/src/server/org/opends/server/tools/dsreplication/MonoServerReplicationUserData.java
+++ b/opends/src/server/org/opends/server/tools/dsreplication/MonoServerReplicationUserData.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;
@@ -42,7 +42,7 @@
* Returns the host name of the server.
* @return the host name of the server.
*/
- String getHostName()
+ public String getHostName()
{
return hostName;
}
@@ -51,7 +51,7 @@
* Sets the host name of the server.
* @param hostName the host name of the server.
*/
- void setHostName(String hostName)
+ public void setHostName(String hostName)
{
this.hostName = hostName;
}
@@ -60,7 +60,7 @@
* Returns the port of the server.
* @return the port of the server.
*/
- int getPort()
+ public int getPort()
{
return port;
}
@@ -69,7 +69,7 @@
* Sets the port of the server.
* @param port the port of the server.
*/
- void setPort(int port)
+ public void setPort(int port)
{
this.port = port;
}
--
Gitblit v1.10.0