]> git.mxchange.org Git - juser-login-lib.git/blobdiff - src/org/mxchange/jusercore/model/login/UserLoginSessionBeanRemote.java
Auto-formatted whole project
[juser-login-lib.git] / src / org / mxchange / jusercore / model / login / UserLoginSessionBeanRemote.java
index 1bd74cbcc50b43a792d4c17642bcff932d3ff9f8..453ccb0d80b50cd3fbddb5a1d35a673ac9255434 100644 (file)
@@ -32,13 +32,19 @@ import org.mxchange.jusercore.model.user.User;
 public interface UserLoginSessionBeanRemote extends Serializable {
 
        /**
-        * Validates if the user is a confirmed account and returns the full user instance
+        * Validates if the user is a confirmed account and returns the full user
+        * instance
         * <p>
         * @param user User instance to register
+        * <p>
         * @return Full confirmed user account
-        * @throws org.mxchange.jusercore.exceptions.UserNotFoundException If the user account was not found
-        * @throws org.mxchange.jusercore.exceptions.UserStatusLockedException If the user account is locked
-        * @throws org.mxchange.jusercore.exceptions.UserStatusUnconfirmedException If the user account is unconfirmed
+        * <p>
+        * @throws org.mxchange.jusercore.exceptions.UserNotFoundException If the
+        * user account was not found
+        * @throws org.mxchange.jusercore.exceptions.UserStatusLockedException If
+        * the user account is locked
+        * @throws org.mxchange.jusercore.exceptions.UserStatusUnconfirmedException
+        * If the user account is unconfirmed
         */
        public User validateUserAccountStatus (final User user) throws UserNotFoundException, UserStatusLockedException, UserStatusUnconfirmedException;
 }