]> git.mxchange.org Git - juser-login-lib.git/commitdiff
Cleanup through inspection + updated jar(s)
authorRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:47:12 +0000 (09:47 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:51:36 +0000 (09:51 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/juser-core.jar
src/org/mxchange/jusercore/model/login/UserLoginSessionBeanRemote.java
src/org/mxchange/jusercore/model/register/UserRegistrationSessionBeanRemote.java
src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java

index 52192afb650a52b7b7b6199a0479a2083a849665..404aa57a64c762198ae62f54693ad7854a9566bf 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index 17699eb6d4fb7eb38a3a282099b906ac0015b17c..581d569f22348595b4547101960ee0c1d62afa47 100644 (file)
@@ -51,5 +51,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;
 }
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);
 }
index f89fb4dc079be997562723ae70ef8e2c2ed0c03e..337536b23ccf4b5819c20d61fe781ab1d6ecaa5f 100644 (file)
@@ -33,7 +33,7 @@ public interface UserSessionBeanRemote extends Serializable {
         * <p>
         * @return A list of all public user profiles
         */
-       public List<User> allPublicUsers ();
+       List<User> allPublicUsers ();
 
        /**
         * Fills given user instance with all available data
@@ -42,21 +42,21 @@ public interface UserSessionBeanRemote extends Serializable {
         * <p>
         * @return Prepared User instance
         */
-       public User fillUserData (final User user);
+       User fillUserData (final User user);
 
        /**
         * Some "getter" for a full user name list
         * <p>
         * @return User name list
         */
-       public List<String> getUserNameList ();
+       List<String> getUserNameList ();
 
        /**
         * Some "getter" for a full email address list
         * <p>
         * @return User name list
         */
-       public List<String> getEmailAddressList ();
+       List<String> getEmailAddressList ();
 
        /**
         * Checks if given user id exists
@@ -64,7 +64,7 @@ public interface UserSessionBeanRemote extends Serializable {
         * @param userId User id to check
         * @return Whether the user id exists
         */
-       public boolean ifUserIdExists (final Long userId);
+       boolean ifUserIdExists (final Long userId);
 
        /**
         * Checks if the the given user's name is already registered
@@ -73,7 +73,7 @@ public interface UserSessionBeanRemote extends Serializable {
         * <p>
         * @return Whether the user is already registered
         */
-       public boolean isUserNameReqistered (final User user);
+       boolean isUserNameReqistered (final User user);
 
        /**
         * Checks if the the given user's email address is already registered
@@ -82,5 +82,5 @@ public interface UserSessionBeanRemote extends Serializable {
         * <p>
         * @return Whether the user is already registered
         */
-       public boolean isEmailAddressReqistered (final User user);
+       boolean isEmailAddressReqistered (final User user);
 }