Removed DOCUMENT ME comments that were generated and applied source code
[utils] / security / src / test / java / org / wamblee / security / authorization / TestResource.java
index 386a98441a672bb8988dca91c56492d380a61888..0d0bfce47e7469dda9fb545dfa011dc2dd412af6 100644 (file)
@@ -17,29 +17,20 @@ package org.wamblee.security.authorization;
 
 /**
  * A test resource for authorization.
- *
+ * 
  * @author Erik Brakkee
  */
 public class TestResource {
-    /**
-     * DOCUMENT ME!
-     */
     private String path;
 
-/**
+    /**
      * Creates a new TestResource object.
-     *
-     * @param aPath DOCUMENT ME!
+     * 
      */
     public TestResource(String aPath) {
         path = aPath;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     public String getPath() {
         return path;
     }