]> git.mxchange.org Git - juser-login-lib.git/blobdiff - src/org/mxchange/jusercore/model/login/UserLoginSessionBeanRemote.java
unencrypted ... better clear-text ...
[juser-login-lib.git] / src / org / mxchange / jusercore / model / login / UserLoginSessionBeanRemote.java
index 17699eb6d4fb7eb38a3a282099b906ac0015b17c..157ff31ba28b4e531feff24ecea2603a6370856a 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -28,7 +28,7 @@ import org.mxchange.jusercore.model.user.User;
 /**
  * A remote interface for user login
  * <p>
- * @author Roland Haeder
+ * @author Roland Häder<roland@mxchange.org>
  */
 @Remote
 public interface UserLoginSessionBeanRemote extends Serializable {
@@ -37,8 +37,7 @@ public interface UserLoginSessionBeanRemote extends Serializable {
         * Validates if the user is a confirmed account and returns the full user
         * instance
         * <p>
-        * @param container Login container holding user instance and unencrypted
-        * password
+        * @param container Login container holding user instance and clear-text password
         * <p>
         * @return Full confirmed user account
         * <p>
@@ -51,5 +50,5 @@ public interface UserLoginSessionBeanRemote extends Serializable {
         * @throws org.mxchange.jusercore.exceptions.UserPasswordMismatchException
         * If the password is not matching
         */
-       public User validateUserAccountStatus (final LoginContainer container) throws UserNotFoundException, UserStatusLockedException, UserStatusUnconfirmedException, UserPasswordMismatchException;
+       User validateUserAccountStatus (final LoginContainer container) throws UserNotFoundException, UserStatusLockedException, UserStatusUnconfirmedException, UserPasswordMismatchException;
 }