From 9cf914d1062389a8d4c937b0f9e38574fc2eaba9 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Sun, 24 Jun 2007 02:48:27 +0000
Subject: [PATCH] Migrate the group configuration to the admin framework.
---
opends/src/server/org/opends/server/extensions/StaticGroup.java | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/opends/src/server/org/opends/server/extensions/StaticGroup.java b/opends/src/server/org/opends/server/extensions/StaticGroup.java
index faf8172..5e19363 100644
--- a/opends/src/server/org/opends/server/extensions/StaticGroup.java
+++ b/opends/src/server/org/opends/server/extensions/StaticGroup.java
@@ -33,9 +33,9 @@
import java.util.LinkedList;
import java.util.List;
+import org.opends.server.admin.std.server.GroupImplementationCfg;
import org.opends.server.api.Group;
import org.opends.server.core.ModifyOperation;
-import org.opends.server.config.ConfigEntry;
import org.opends.server.config.ConfigException;
import org.opends.server.protocols.internal.InternalClientConnection;
import org.opends.server.types.Attribute;
@@ -77,7 +77,7 @@
* stores the member list in the {@code uniqueMember} attribute.
*/
public class StaticGroup
- extends Group
+ extends Group<GroupImplementationCfg>
{
/**
* The tracer object for the debug logger.
@@ -138,7 +138,8 @@
* {@inheritDoc}
*/
@Override()
- public void initializeGroupImplementation(ConfigEntry configEntry)
+ public void initializeGroupImplementation(
+ GroupImplementationCfg configuration)
throws ConfigException, InitializationException
{
// No additional initialization is required.
--
Gitblit v1.10.0