X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=security%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsecurity%2Fauthorization%2FTestResource.java;h=cb600d73642fa5e7512188794060bb6d3746b337;hb=17775e14ecfb286e59f67117e5cee7e21e95ab1f;hp=4712c42c0b3df3a4db5eae7fc4aea6b83b46ebe1;hpb=0d8d8f24656e585ee75558cfd6a4c661f8f14985;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 4712c42c..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,23 +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; } }