mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Nicolas Capponi
08.33.2014 8643a9160860e31611f034467f702eb3a712eb34
opendj3-server-dev/src/server/org/opends/server/extensions/DynamicGroup.java
@@ -59,7 +59,7 @@
import static org.opends.server.config.ConfigConstants.*;
import static org.opends.server.loggers.debug.DebugLogger.*;
import static org.opends.server.util.ServerConstants.*;
import static org.opends.server.util.Validator.*;
import static org.forgerock.util.Reject.*;
@@ -112,7 +112,7 @@
  {
    super();
    ensureNotNull(groupEntryDN, memberURLs);
    ifNull(groupEntryDN, memberURLs);
    this.groupEntryDN = groupEntryDN;
    this.memberURLs   = memberURLs;
@@ -141,7 +141,7 @@
  public DynamicGroup newInstance(Entry groupEntry)
         throws DirectoryException
  {
    ensureNotNull(groupEntry);
    ifNull(groupEntry);
    // Get the memberURL attribute from the entry, if there is one, and parse
@@ -203,7 +203,7 @@
  @Override()
  public boolean isGroupDefinition(Entry entry)
  {
    ensureNotNull(entry);
    ifNull(entry);
    // FIXME -- This needs to exclude enhanced groups once we have support for
    //them.