copyright messages updated in all java filees.
[utils] / security / src / test / java / org / wamblee / security / authorization / TestResource.java
index a0edd8986e5500b3ca4932c94b8fed0670230f10..cb600d73642fa5e7512188794060bb6d3746b337 100644 (file)
@@ -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.
  * 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;
     }
 }