align package names.
[utils] / security / impl / src / main / java / org / wamblee / security / authorization / AuthorizationRule.java
index d968c836476f787e414c8a3df243d9e037cfce99..46ef04b95dcf748034de3a42204be6fff7d1554a 100644 (file)
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.security.authorization;
 
-import org.wamblee.persistence.Persistent;
-
-import org.wamblee.usermgt.User;
+import org.wamblee.security.authentication.User;
 
 /**
  * Represents an authorization rule to determine whether an operation is allowed
@@ -25,14 +23,15 @@ import org.wamblee.usermgt.User;
  * 
  * @author Erik Brakkee
  */
-public interface AuthorizationRule extends Persistent {
+public interface AuthorizationRule {
+
     /**
      * Returns the supported object types for which this authorization rule
      * applies. This can be used by the authorization service for optimization.
      * 
      * @return Array of supported types.
      */
-    Class[] getSupportedTypes();
+    public abstract Class[] getSupportedTypes();
 
     /**
      * Determines whether an operation is allowed on a certain resource. The
@@ -49,6 +48,7 @@ public interface AuthorizationRule extends Persistent {
      * 
      * @return Authorization result.
      */
-    AuthorizationResult isAllowed(Object aResource, Operation aOperation,
-        User aUser);
-}
+    public abstract AuthorizationResult isAllowed(Object aResource,
+        Operation aOperation, User aUser);
+
+}
\ No newline at end of file