From: Roland Haeder Date: Thu, 15 Oct 2015 07:47:12 +0000 (+0200) Subject: Cleanup through inspection + updated jar(s) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e8fc4351961acf347540d247b96d6c42783fb5e1;p=juser-login-lib.git Cleanup through inspection + updated jar(s) Signed-off-by:Roland Häder --- diff --git a/lib/juser-core.jar b/lib/juser-core.jar index 52192af..404aa57 100644 Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ diff --git a/src/org/mxchange/jusercore/model/login/UserLoginSessionBeanRemote.java b/src/org/mxchange/jusercore/model/login/UserLoginSessionBeanRemote.java index 17699eb..581d569 100644 --- a/src/org/mxchange/jusercore/model/login/UserLoginSessionBeanRemote.java +++ b/src/org/mxchange/jusercore/model/login/UserLoginSessionBeanRemote.java @@ -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; } diff --git a/src/org/mxchange/jusercore/model/register/UserRegistrationSessionBeanRemote.java b/src/org/mxchange/jusercore/model/register/UserRegistrationSessionBeanRemote.java index 90a2c1e..eefe92c 100644 --- a/src/org/mxchange/jusercore/model/register/UserRegistrationSessionBeanRemote.java +++ b/src/org/mxchange/jusercore/model/register/UserRegistrationSessionBeanRemote.java @@ -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 { *

* @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 { *

* @return Whether the user's email address has already been registered */ - public boolean isEmailAddressRegistered (final User user); + boolean isEmailAddressRegistered (final User user); } diff --git a/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java b/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java index f89fb4d..337536b 100644 --- a/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java +++ b/src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java @@ -33,7 +33,7 @@ public interface UserSessionBeanRemote extends Serializable { *

* @return A list of all public user profiles */ - public List allPublicUsers (); + List allPublicUsers (); /** * Fills given user instance with all available data @@ -42,21 +42,21 @@ public interface UserSessionBeanRemote extends Serializable { *

* @return Prepared User instance */ - public User fillUserData (final User user); + User fillUserData (final User user); /** * Some "getter" for a full user name list *

* @return User name list */ - public List getUserNameList (); + List getUserNameList (); /** * Some "getter" for a full email address list *

* @return User name list */ - public List getEmailAddressList (); + List 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 { *

* @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 { *

* @return Whether the user is already registered */ - public boolean isEmailAddressReqistered (final User user); + boolean isEmailAddressReqistered (final User user); }