Removed DOCUMENT ME comments that were generated and applied source code
[utils] / security / src / main / java / org / wamblee / usermgt / NameValidator.java
index 2ad0db1921e8955af9e3fe3f71181153cdf005f2..96e5fdd4f164e89aaddbec9641d376d5f97a1ef6 100644 (file)
@@ -17,16 +17,18 @@ package org.wamblee.usermgt;
 
 /**
  * Validator of names.
- *
+ * 
  * @author Erik Brakkee
  */
 public interface NameValidator {
     /**
      * Validates a name.
-     *
-     * @param aName Name
-     *
-     * @throws UserMgtException In case the name is invalid.
+     * 
+     * @param aName
+     *            Name
+     * 
+     * @throws UserMgtException
+     *             In case the name is invalid.
      */
     void validate(String aName) throws UserMgtException;
 }