now using the simplified user management interface.
[utils] / security / impl / src / main / java / org / wamblee / security / authentication / NameValidator.java
index b5935cb40ef7f9a32629e0312b49514d1c3319c4..910b345eee23a1ce2cae16e09dbc4b50d57220cc 100644 (file)
@@ -27,8 +27,7 @@ public interface NameValidator {
      * @param aName
      *            Name
      * 
-     * @throws UserMgtException
-     *             In case the name is invalid.
+     * @return True iff the validationo is ok. 
      */
-    void validate(String aName) throws UserMgtException;
+    boolean validate(String aName);
 }