X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=security%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsecurity%2Fauthorization%2FTestResource.java;h=cb600d73642fa5e7512188794060bb6d3746b337;hb=17775e14ecfb286e59f67117e5cee7e21e95ab1f;hp=4708a6918cda1e45e822a1de43cc39d74b48d929;hpb=162af365e45e54e5e8d656be276914df2005eaec;p=utils diff --git a/security/src/test/java/org/wamblee/security/authorization/TestResource.java b/security/src/test/java/org/wamblee/security/authorization/TestResource.java index 4708a691..cb600d73 100644 --- a/security/src/test/java/org/wamblee/security/authorization/TestResource.java +++ b/security/src/test/java/org/wamblee/security/authorization/TestResource.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,21 +13,25 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - package org.wamblee.security.authorization; /** - * A test resource for authorization. + * A test resource for authorization. + * + * @author Erik Brakkee */ public class TestResource { + private String path; - private String _path; - - public TestResource(String aPath) { - _path = aPath; + /** + * Creates a new TestResource object. + * + */ + public TestResource(String aPath) { + path = aPath; } - - public String getPath() { - return _path; + + public String getPath() { + return path; } }