X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=security%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsecurity%2Fauthorization%2FAuthorizationException.java;h=e06a91449037a018401cc1ecc8c126ba1da70376;hb=17775e14ecfb286e59f67117e5cee7e21e95ab1f;hp=d7a81fd5bd60dbfef84f20443485c953fb49f619;hpb=532f7219273021ef3652e0abe1326b7aeed1f30a;p=utils diff --git a/security/src/main/java/org/wamblee/security/authorization/AuthorizationException.java b/security/src/main/java/org/wamblee/security/authorization/AuthorizationException.java index d7a81fd5..e06a9144 100644 --- a/security/src/main/java/org/wamblee/security/authorization/AuthorizationException.java +++ b/security/src/main/java/org/wamblee/security/authorization/AuthorizationException.java @@ -1,5 +1,5 @@ /* - * Copyright 2005 the original author or authors. + * Copyright 2005-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -13,32 +13,34 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.wamblee.security.authorization; /** - * Authorization exception to be thrown when - * a resouce may not be accessed. - * + * Authorization exception to be thrown when a resouce may not be accessed. + * * @author Erik Brakkee */ public class AuthorizationException extends RuntimeException { - - private Object _resource; - private Operation _operation; + private Object resource; + + private Operation operation; + /** + * Creates a new AuthorizationException object. + * + */ public AuthorizationException(Object aResource, Operation aOperation) { - super("Operation '" + aOperation + "' not allowed on '" + aResource + "'"); - _resource = aResource; - _operation = aOperation; + super("Operation '" + aOperation + "' not allowed on '" + aResource + + "'"); + resource = aResource; + operation = aOperation; } - - public Object getResource() { - return _resource; + + public Object getResource() { + return resource; } - - public Operation getOperation() { - return _operation; + + public Operation getOperation() { + return operation; } - }