From 9b88d8643e4f7a311d2b228d2bce5c043bba82b5 Mon Sep 17 00:00:00 2001
From: neil_a_wilson <neil_a_wilson@localhost>
Date: Fri, 31 Aug 2007 22:49:33 +0000
Subject: [PATCH] Create configuration definitions for "generic" objects in the server configuration.  This also includes allocating object classes for each of these types.  This will help make it easier for users to create new instances of these kinds of configuration objects because they will not need to know the fully-qualified name of the Java class that implements the associated logic.

---
 opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java b/opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java
index 18e031d..c9164ac 100644
--- a/opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java
+++ b/opends/src/server/org/opends/server/extensions/VirtualStaticGroup.java
@@ -25,7 +25,6 @@
  *      Portions Copyright 2007 Sun Microsystems, Inc.
  */
 package org.opends.server.extensions;
-import org.opends.messages.Message;
 
 
 
@@ -33,10 +32,12 @@
 import java.util.List;
 import java.util.Set;
 
-import org.opends.server.admin.std.server.GroupImplementationCfg;
+import org.opends.messages.Message;
+import org.opends.server.admin.std.server.VirtualStaticGroupImplementationCfg;
 import org.opends.server.api.Group;
 import org.opends.server.core.DirectoryServer;
 import org.opends.server.config.ConfigException;
+import org.opends.server.loggers.debug.DebugTracer;
 import org.opends.server.types.Attribute;
 import org.opends.server.types.AttributeType;
 import org.opends.server.types.AttributeValue;
@@ -51,10 +52,9 @@
 import org.opends.server.types.SearchFilter;
 import org.opends.server.types.SearchScope;
 
+import static org.opends.messages.ExtensionMessages.*;
 import static org.opends.server.config.ConfigConstants.*;
 import static org.opends.server.loggers.debug.DebugLogger.*;
-import org.opends.server.loggers.debug.DebugTracer;
-import static org.opends.messages.ExtensionMessages.*;
 import static org.opends.server.util.ServerConstants.*;
 import static org.opends.server.util.Validator.*;
 
@@ -65,7 +65,7 @@
  * membership is based on membership of another group.
  */
 public class VirtualStaticGroup
-       extends Group<GroupImplementationCfg>
+       extends Group<VirtualStaticGroupImplementationCfg>
 {
   /**
    * The tracer object for the debug logger.
@@ -119,7 +119,7 @@
    */
   @Override()
   public void initializeGroupImplementation(
-                   GroupImplementationCfg configuration)
+                   VirtualStaticGroupImplementationCfg configuration)
          throws ConfigException, InitializationException
   {
     // No additional initialization is required.

--
Gitblit v1.10.0