]> git.mxchange.org Git - juser-lib.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 15 Oct 2017 20:57:05 +0000 (22:57 +0200)
committerRoland Häder <roland@mxchange.org>
Mon, 16 Oct 2017 19:00:28 +0000 (21:00 +0200)
- removed findUserById() as this has been moved to WAR project (and later Swing)
  for performance reasons
- removed also another method as it causes load on EJB that can be avoided

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

index 5c223c7a453bf7fd2a0ec9998626484ce6cdb17d..04fdac44ba2d2b2c000bdf433a3c5c3bf2e01679 100644 (file)
@@ -78,19 +78,6 @@ public interface UserSessionBeanRemote extends Serializable {
         */
        User updateUserData (final User user);
 
-       /**
-        * Find user by given user id and returns fetched instance. If the user is
-        * not found, an exception is thrown.
-        * <p>
-        * @param userId User id
-        * <p>
-        * @return User instance
-        *
-        * @throws org.mxchange.jusercore.exceptions.UserNotFoundException If the
-        * user is not found
-        */
-       User findUserById (final Long userId) throws UserNotFoundException;
-
        /**
         * Returns a list of all users. This is mostly suitable for administrative
         * interfaces.
@@ -139,15 +126,6 @@ public interface UserSessionBeanRemote extends Serializable {
         */
        List<String> getEmailAddressList ();
 
-       /**
-        * Checks if given user id exists
-        * <p>
-        * @param userId User id to check
-        * <p>
-        * @return Whether the user id exists
-        */
-       boolean ifUserIdExists (final Long userId);
-
        /**
         * Checks if given user name is already used
         * <p>