Removed DOCUMENT ME comments that were generated and applied source code
[utils] / security / src / main / java / org / wamblee / security / authorization / StartsWithPathCondition.java
index 090214c8aff2c80feb3aeeec387384257c0e9e5c..dc313159158aa30a1c250ffd82256aeb04d3e8ec 100644 (file)
@@ -17,34 +17,33 @@ package org.wamblee.security.authorization;
 
 /**
  * Condition to check whether a path starts with a given string.
- *
+ * 
  * @author Erik Brakkee
  */
 public class StartsWithPathCondition extends RegexpPathCondition {
-/**
-     * Constructs the condition. 
-     * @param aPath String the path must start with. 
+    /**
+     * Constructs the condition.
+     * 
+     * @param aPath
+     *            String the path must start with.
      */
     public StartsWithPathCondition(String aPath) {
         super(aPath + ".*");
     }
 
-/**
-     * For OR mapping. 
-     *
+    /**
+     * For OR mapping.
+     * 
      */
     protected StartsWithPathCondition() {
         super();
     }
 
-    /* (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see java.lang.Object#toString()
      */
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     public String toString() {
         return "StartsWithPathCondition(pattern = '" + getPattern() + "')";