Removed DOCUMENT ME comments that were generated and applied source code
[utils] / security / src / main / java / org / wamblee / security / authorization / AnyUserCondition.java
index 26a9153ee8bbc45c57dcd9ce117d5a510fee8208..e24a40585ebe464fee6245d24d35e863a8ea8acf 100644 (file)
@@ -19,44 +19,37 @@ import org.wamblee.persistence.AbstractPersistent;
 
 import org.wamblee.usermgt.User;
 
-
 /**
  * Matches any user.
- *
+ * 
  * @author Erik Brakkee
  */
-public class AnyUserCondition extends AbstractPersistent
-    implements UserCondition {
-/**
-     * Constructs the condition. 
-     *
+public class AnyUserCondition extends AbstractPersistent implements
+    UserCondition {
+    /**
+     * Constructs the condition.
+     * 
      */
     public AnyUserCondition() {
-        // Empty. 
+        // Empty.
     }
 
-    /* (non-Javadoc)
-     * @see org.wamblee.security.authorization.UserCondition#matches(org.wamblee.usermgt.User)
-     */
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aUser DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
+    /*
+     * (non-Javadoc)
+     * 
+     * @see
+     * org.wamblee.security.authorization.UserCondition#matches(org.wamblee.
+     * usermgt.User)
      */
     public boolean matches(User aUser) {
         return true;
     }
 
-    /* (non-Javadoc)
+    /*
+     * (non-Javadoc)
+     * 
      * @see java.lang.Object#toString()
      */
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     @Override
     public String toString() {
         return "AnyUserCondition()";