From 4cb8262e95fde77e6a0d2c84f1aa118e3b1ee850 Mon Sep 17 00:00:00 2001
From: Nicolas Capponi <nicolas.capponi@forgerock.com>
Date: Thu, 06 Nov 2014 14:50:48 +0000
Subject: [PATCH] OPENDJ-1591 CR-5092 Switch server to SDK matching rules

---
 opendj3-server-dev/src/server/org/opends/server/api/Group.java |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/opendj3-server-dev/src/server/org/opends/server/api/Group.java b/opendj3-server-dev/src/server/org/opends/server/api/Group.java
index 0a0b944..9763922 100644
--- a/opendj3-server-dev/src/server/org/opends/server/api/Group.java
+++ b/opendj3-server-dev/src/server/org/opends/server/api/Group.java
@@ -29,11 +29,13 @@
 
 
 
+
 import java.util.HashSet;
 import java.util.List;
 import java.util.Set;
 
 import org.opends.server.admin.std.server.GroupImplementationCfg;
+import org.opends.server.core.ServerContext;
 import org.forgerock.opendj.config.server.ConfigException;
 import org.opends.server.types.DirectoryException;
 import org.opends.server.types.DN;
@@ -148,6 +150,8 @@
    * default constructor and initialized with the
    * {@code initializeGroupImplementation} method.
    *
+   * @param serverContext
+   *            The server context.
    * @param  groupEntry  The entry containing the definition for the
    *                     group to be created.
    *
@@ -157,7 +161,7 @@
    * @throws  DirectoryException  If a problem occurs while trying to
    *                              create the group instance.
    */
-  public abstract Group newInstance(Entry groupEntry)
+  public abstract Group<T> newInstance(ServerContext serverContext, Entry groupEntry)
          throws DirectoryException;
 
 

--
Gitblit v1.10.0