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

pgamba
06.34.2009 76ebd1ad82e2a1fc421519f09c62b948e9376e8a
opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java
@@ -26,10 +26,11 @@
 */
package org.opends.server.replication.plugin;
import java.util.HashSet;
import java.util.List;
import java.util.SortedSet;
import java.util.TreeSet;
import org.opends.server.admin.Configuration;
import org.opends.server.admin.server.ConfigurationChangeListener;
import org.opends.server.admin.server.ServerManagedObject;
@@ -67,6 +68,8 @@
  private SortedSet<String> fractionalExcludes = new TreeSet<String>();
  private SortedSet<String> fractionalIncludes = new TreeSet<String>();
  private SortedSet<String> eclIncludes = new TreeSet<String>();
  /**
   * Creates a new Domain with the provided information
   * (assured mode disabled, default group id)
@@ -356,4 +359,14 @@
  {
    return true;
  }
  public void setEclIncludes(SortedSet<String> attrs)
  {
    this.eclIncludes = attrs;
  }
  public SortedSet<String> getEclInclude()
  {
    return this.eclIncludes;
  }
}