]> git.mxchange.org Git - juser-activity-lib.git/blobdiff - src/org/mxchange/jusercore/model/register/UserRegistrationSessionBeanRemote.java
Cleanup through inspection + updated jar(s)
[juser-activity-lib.git] / src / org / mxchange / jusercore / model / register / UserRegistrationSessionBeanRemote.java
index 90a2c1e66dfee183a5d79a71efc62664bb9dceb6..eefe92ccefbbc8478e6da856876bf55f579ee2aa 100644 (file)
@@ -44,7 +44,7 @@ public interface UserRegistrationSessionBeanRemote extends Serializable {
         * org.mxchange.jusercore.exceptions.EmailAddressAlreadyRegisteredException
         * If the email address has already been registered
         */
-       public User registerUser (final User user) throws UserNameAlreadyRegisteredException, EmailAddressAlreadyRegisteredException;
+       User registerUser (final User user) throws UserNameAlreadyRegisteredException, EmailAddressAlreadyRegisteredException;
 
        /**
         * Checks if the user's name is already registered
@@ -53,7 +53,7 @@ public interface UserRegistrationSessionBeanRemote extends Serializable {
         * <p>
         * @return Whether the user's name has already been registered
         */
-       public boolean isUserNameRegistered (final User user);
+       boolean isUserNameRegistered (final User user);
 
        /**
         * Checks if the user's email address is already registered
@@ -62,5 +62,5 @@ public interface UserRegistrationSessionBeanRemote extends Serializable {
         * <p>
         * @return Whether the user's email address has already been registered
         */
-       public boolean isEmailAddressRegistered (final User user);
+       boolean isEmailAddressRegistered (final User user);
 }