updated coding rules.
[utils] / security / src / test / java / org / wamblee / security / authorization / TestResource.java
index a0edd8986e5500b3ca4932c94b8fed0670230f10..4712c42c0b3df3a4db5eae7fc4aea6b83b46ebe1 100644 (file)
@@ -23,13 +23,13 @@ package org.wamblee.security.authorization;
  */
 public class TestResource {
 
-    private String _path; 
+    private String path; 
     
     public TestResource(String aPath) { 
-        _path = aPath;     
+        path = aPath;     
     }
     
     public String getPath() { 
-        return _path; 
+        return path; 
     }
 }