]> git.mxchange.org Git - juser-login-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Fri, 22 Sep 2017 23:20:59 +0000 (01:20 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 22 Sep 2017 23:20:59 +0000 (01:20 +0200)
- these methods where just wrapping calls of same methods in user EJB
- so let's get rid of this double-redundant code

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/juserlogincore/model/user/register/UserRegistrationSessionBeanRemote.java

index 55517b1d2df1b6d5c4b28deda5f48ca1c62d0caa..c9c9a9e3f896259cc6411e6addec2602be3906e3 100644 (file)
@@ -58,21 +58,4 @@ public interface UserRegistrationSessionBeanRemote extends Serializable {
         */
        User registerUser (final User user, final String baseUrl, final String randomPassword) throws UserNameAlreadyRegisteredException, EmailAddressAlreadyRegisteredException;
 
-       /**
-        * Checks if the user's name is already registered
-        * <p>
-        * @param user User instance to check
-        * <p>
-        * @return Whether the user's name has already been registered
-        */
-       boolean isUserNameRegistered (final User user);
-
-       /**
-        * Checks if the user's email address is already registered
-        * <p>
-        * @param user User instance to check
-        * <p>
-        * @return Whether the user's email address has already been registered
-        */
-       boolean isEmailAddressRegistered (final User user);
 }