From 76ebd1ad82e2a1fc421519f09c62b948e9376e8a Mon Sep 17 00:00:00 2001
From: pgamba <pgamba@localhost>
Date: Tue, 06 Oct 2009 12:34:32 +0000
Subject: [PATCH] Entry attributes for ECL - Protocol V4

---
 opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java |   15 ++++++++++++++-
 1 files changed, 14 insertions(+), 1 deletions(-)

diff --git a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java b/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java
index 7f65980..286ed40 100644
--- a/opends/tests/unit-tests-testng/src/server/org/opends/server/replication/plugin/DomainFakeCfg.java
+++ b/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;
+  }
 }

--
Gitblit v1.10.0