(no commit message)
[utils] / security / impl / src / main / java / org / wamblee / security / authorization / UserCondition.java
index 9f0963b7dc86b9d2762d74f190afab6fd3c436f5..7ce55cf96f8acf9bce93bc8a09d3e9af3e5a8315 100644 (file)
@@ -15,8 +15,6 @@
  */ 
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.Persistent;
-
 import org.wamblee.usermgt.User;
 
 /**
@@ -24,7 +22,8 @@ import org.wamblee.usermgt.User;
  * 
  * @author Erik Brakkee
  */
-public interface UserCondition extends Persistent {
+public interface UserCondition {
+
     /**
      * Determines if the condition matches.
      * 
@@ -33,5 +32,6 @@ public interface UserCondition extends Persistent {
      * 
      * @return True if the condition matches, false otherwise.
      */
-    boolean matches(User aUser);
-}
+    public abstract boolean matches(User aUser);
+
+}
\ No newline at end of file