X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=security%2Fimpl%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsecurity%2Fauthorization%2FPathCondition.java;h=0fd91916791ac1812538db4a9db81b73d645bb22;hb=e8b988e92306a4aea2f047af1b48588147288831;hp=4e03953f7803ac59b7c6769564bf7d7cdf2f2483;hpb=5ea8f0e2af53562c1507e8fb5a3ede2af5c5de6c;p=utils diff --git a/security/impl/src/main/java/org/wamblee/security/authorization/PathCondition.java b/security/impl/src/main/java/org/wamblee/security/authorization/PathCondition.java index 4e03953f..0fd91916 100644 --- a/security/impl/src/main/java/org/wamblee/security/authorization/PathCondition.java +++ b/security/impl/src/main/java/org/wamblee/security/authorization/PathCondition.java @@ -15,14 +15,13 @@ */ 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