From fbda6e0892dcfcc8dd43d21f6fb134aabb8d0cac Mon Sep 17 00:00:00 2001
From: jarnou <jarnou@localhost>
Date: Tue, 03 Jul 2007 09:29:17 +0000
Subject: [PATCH] Commits the refactoring of the core server to provide support for proxy/distribution/virtual functionnalities. This includes the new set of local operations, as well as the workflow and networkgroup support.
---
opends/src/server/org/opends/server/extensions/StaticGroup.java | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/StaticGroup.java b/opends/src/server/org/opends/server/extensions/StaticGroup.java
index 5e19363..95e2b05 100644
--- a/opends/src/server/org/opends/server/extensions/StaticGroup.java
+++ b/opends/src/server/org/opends/server/extensions/StaticGroup.java
@@ -35,7 +35,7 @@
import org.opends.server.admin.std.server.GroupImplementationCfg;
import org.opends.server.api.Group;
-import org.opends.server.core.ModifyOperation;
+import org.opends.server.core.ModifyOperationBasis;
import org.opends.server.config.ConfigException;
import org.opends.server.protocols.internal.InternalClientConnection;
import org.opends.server.types.Attribute;
@@ -460,8 +460,8 @@
InternalClientConnection conn =
InternalClientConnection.getRootConnection();
- ModifyOperation modifyOperation =
- new ModifyOperation(conn, conn.nextOperationID(),
+ ModifyOperationBasis modifyOperation =
+ new ModifyOperationBasis(conn, conn.nextOperationID(),
conn.nextMessageID(), requestControls,
groupEntryDN, mods);
modifyOperation.run();
@@ -524,8 +524,8 @@
InternalClientConnection conn =
InternalClientConnection.getRootConnection();
- ModifyOperation modifyOperation =
- new ModifyOperation(conn, conn.nextOperationID(),
+ ModifyOperationBasis modifyOperation =
+ new ModifyOperationBasis(conn, conn.nextOperationID(),
conn.nextMessageID(), requestControls,
groupEntryDN, mods);
modifyOperation.run();
--
Gitblit v1.10.0