From ee2ff8597fe2d38628a5fe718e11b5f3965eb08b 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.
---
opendj-sdk/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliException.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/opendj-sdk/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliException.java b/opendj-sdk/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliException.java
index dc2ecee..4786739 100644
--- a/opendj-sdk/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliException.java
+++ b/opendj-sdk/opends/src/server/org/opends/server/tools/dsreplication/ReplicationCliException.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;
@@ -44,7 +44,8 @@
* @param errorCode the error code associated with this exception.
* @param cause the cause that generated this exception.
*/
- ReplicationCliException(Message message, ReplicationCliReturnCode errorCode,
+ public ReplicationCliException(Message message,
+ ReplicationCliReturnCode errorCode,
Throwable cause)
{
super(message, cause);
--
Gitblit v1.10.0