(no commit message)
[utils] / security / impl / src / main / java / org / wamblee / security / authorization / PathCondition.java
index 4e03953f7803ac59b7c6769564bf7d7cdf2f2483..0fd91916791ac1812538db4a9db81b73d645bb22 100644 (file)
  */ 
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.Persistent;
-
 /**
  * Checks if a path satisfies a condition.
  * 
  * @author Erik Brakkee
  */
-public interface PathCondition extends Persistent {
+public interface PathCondition {
+
     /**
      * Checks if the path matches the condition.
      * 
@@ -31,5 +30,6 @@ public interface PathCondition extends Persistent {
      * 
      * @return True iff the path matches.
      */
-    boolean matches(String aPath);
-}
+    public abstract boolean matches(String aPath);
+
+}
\ No newline at end of file