From e8fc4351961acf347540d247b96d6c42783fb5e1 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Thu, 15 Oct 2015 09:47:12 +0200 Subject: [PATCH] =?utf8?q?Cleanup=20through=20inspection=20+=20updated=20j?= =?utf8?q?ar(s)=20Signed-off-by:Roland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lib/juser-core.jar | Bin 23003 -> 23003 bytes .../login/UserLoginSessionBeanRemote.java | 2 +- .../UserRegistrationSessionBeanRemote.java | 6 +++--- .../model/user/UserSessionBeanRemote.java | 14 +++++++------- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/juser-core.jar b/lib/juser-core.jar index 52192afb650a52b7b7b6199a0479a2083a849665..404aa57a64c762198ae62f54693ad7854a9566bf 100644 GIT binary patch delta 372 zcmcb;nep~!MxFp~W)?061`Y-WOTURcnoJgc6V0bH0ofN6K;$P)AURo<(HKMpG1`Kt ziHy!5Dv(KYk`ni1E+#GzPmIYDB4`Iz!sH61Hs4@+$q1qkv*fUWXhZG@CJ^1t8^Hpi zp9)%nX$7%fW)Oe9WEPl~mR%2~&nTP#)6-PkBtY`_Z0>{A?{_@H0phoMZ3US-*(T5u z=xKH z1%{-9s9ho1AWA(nA4JUvtpZUZVPznyCoB_0eGe-HQCZ=+AnIm#5s31Qhy_t=A|gN( LTO^p58d(Ma^&@cp delta 372 zcmcb;nep~!MxFp~W)?061`Y-WQ`d<+noK6H6V0bH0ofN6K;$P)AURo<(HKMpG1`Kt ziHy!5Dv(KYk`ni1E+#GzPmIYDB4`Iz!sH61Hs4@+$q1qkv*fUWXhZG@CJ^1t8^Hpi zp9)%nX$7%fW)Oe9WEPl~mR%2~&nTP#)6-PkBtY`_Z0>{A?{_@H0phoMZ3US-*(T5u z=xKH z1%{-9s9ho1AWA(nA4JUvtpZUZVPznyCoB_0eGe-HQCZ=+AnIm#5s31Qhy_t=A|gN( LTO^p58d(MaLJV$> 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); } -- 2.39.5