[maven-release-plugin] prepare for next development iteration
[utils] / security / src / test / java / org / wamblee / security / authorization / TestResource.java
index 4708a6918cda1e45e822a1de43cc39d74b48d929..4712c42c0b3df3a4db5eae7fc4aea6b83b46ebe1 100644 (file)
@@ -18,16 +18,18 @@ package org.wamblee.security.authorization;
 
 /**
  * A test resource for authorization. 
+ *
+ * @author Erik Brakkee
  */
 public class TestResource {
 
-    private String _path; 
+    private String path; 
     
     public TestResource(String aPath) { 
-        _path = aPath;     
+        path = aPath;     
     }
     
     public String getPath() { 
-        return _path; 
+        return path; 
     }
 }