(no commit message)
authorErik Brakkee <erik@brakkee.org>
Mon, 26 Apr 2010 20:16:35 +0000 (20:16 +0000)
committerErik Brakkee <erik@brakkee.org>
Mon, 26 Apr 2010 20:16:35 +0000 (20:16 +0000)
security/impl/src/main/java/org/wamblee/security/authorization/AnyUserCondition.java
security/impl/src/main/java/org/wamblee/security/authorization/DefaultAuthorizationService.java
security/impl/src/main/java/org/wamblee/security/authorization/GroupUserCondition.java
security/impl/src/main/java/org/wamblee/security/authorization/IsaOperationCondition.java
security/impl/src/main/java/org/wamblee/security/authorization/RegexpPathCondition.java
security/impl/src/main/java/org/wamblee/security/authorization/UrlAuthorizationRule.java

index c6694a7f9e796c0ef4434f6ed72928cd321ff3aa..a9801cf05e2f4f41ab1d503c0687982ddc67240f 100644 (file)
@@ -15,8 +15,8 @@
  */ 
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.AbstractPersistent;
 
+import org.wamblee.security.AbstractPersistent;
 import org.wamblee.usermgt.User;
 
 /**
index c5a8d8f2d1a360eb8fd2d2a1315c0507a56ca668..048d66cc924ed2b27a0606ad5ba290f7e5c07339 100644 (file)
@@ -15,8 +15,8 @@
  */ 
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.AbstractPersistent;
 
+import org.wamblee.security.AbstractPersistent;
 import org.wamblee.usermgt.User;
 import org.wamblee.usermgt.UserAccessor;
 
index 83e1d8ec8c0ab8c99071934266de2d8d85aa2cbf..c981e00f0648123246cad214335d0c8722377b8f 100644 (file)
@@ -15,8 +15,8 @@
  */ 
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.AbstractPersistent;
 
+import org.wamblee.security.AbstractPersistent;
 import org.wamblee.usermgt.User;
 
 /**
index 4771302b234792fd507732c21c4ef8bd47b43937..14a8a9de724c6cbc6978faeb2bb226eaf994671c 100644 (file)
@@ -15,7 +15,7 @@
  */ 
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.AbstractPersistent;
+import org.wamblee.security.AbstractPersistent;
 
 /**
  * Determiens if an operation is a subclass of a specified operation.
index b2b022a3ab93d2f74714fdb20853747ace7c96a6..ca11c351e8ab5d4205937603fde1ae9c0628d93c 100644 (file)
@@ -15,7 +15,7 @@
  */ 
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.AbstractPersistent;
+import org.wamblee.security.AbstractPersistent;
 
 /**
  * Condition to check whether a path matches a given regula expression.
index adeb93c157f0ebaa9522e20ef1fd01cabbcaf9e9..71fcac78faca8b1b4f4acaeeb7c10e002e4241f9 100644 (file)
@@ -17,12 +17,12 @@ package org.wamblee.security.authorization;
 
 import org.apache.log4j.Logger;
 
-import org.wamblee.persistence.AbstractPersistent;
 import static org.wamblee.security.authorization.AuthorizationResult.DENIED;
 import static org.wamblee.security.authorization.AuthorizationResult.GRANTED;
 import static org.wamblee.security.authorization.AuthorizationResult.UNDECIDED;
 import static org.wamblee.security.authorization.AuthorizationResult.UNSUPPORTED_RESOURCE;
 
+import org.wamblee.security.AbstractPersistent;
 import org.wamblee.usermgt.User;
 
 /**