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

dugan
07.56.2007 14c5f3996a46c1281cb133de439f25492c97530a
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();
}