From 14c5f3996a46c1281cb133de439f25492c97530a Mon Sep 17 00:00:00 2001
From: dugan <dugan@localhost>
Date: Wed, 07 Mar 2007 14:56:34 +0000
Subject: [PATCH] These changes are mostly related to restructuring the regular expression patterns to make them more readable by defining constants. 

---
 opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java |   14 ++++++++++++++
 1 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java b/opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
index 833309d..7fdb608 100644
--- a/opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
+++ b/opends/src/server/org/opends/server/authorization/dseecompat/AciTargetMatchContext.java
@@ -41,6 +41,7 @@
  * checked on.
  */
 public interface AciTargetMatchContext {
+
     /**
      * Set the deny ACI list.
      * @param denyList The deny ACI list.
@@ -129,6 +130,19 @@
      * @param rights The rights to set the container's rights to.
      */
     public void setRights(int rights);
+
+    /**
+     * Set to true  if the ACI had a targattrfilter rule that matched.
+     * @param v  The value to use.
+     */
+    public void setTargAttrFiltersMatch(boolean v);
+
+    /**
+     * Return the value of the targAttrFiltersMatch variable. This is set to
+     * true if the ACI had a targattrfilter rule that matched.
+     * @return  True if the ACI had a targattrfilter rule that matched.
+     */
+    public boolean getTargAttrFiltersMatch();
 }
 
 

--
Gitblit v1.10.0