(no commit message)
[utils] / security / impl / src / main / java / org / wamblee / security / authorization / OperationCondition.java
index 916ab19ae87f73742a550050a3bcec662f2e771c..06ef988bbf90e10168079c76b4e0013666bab429 100644 (file)
  */ 
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.Persistent;
-
 /**
  * Checks if an operation matches a condition.
  * 
  * @author Erik Brakkee
  */
-public interface OperationCondition extends Persistent {
+public interface OperationCondition {
+
     /**
      * Determines if the operation matches.
      * 
@@ -31,5 +30,6 @@ public interface OperationCondition extends Persistent {
      * 
      * @return True iff the operation matches.
      */
-    boolean matches(Operation aOperation);
-}
+    public abstract boolean matches(Operation aOperation);
+
+}
\ No newline at end of file