]> git.mxchange.org Git - juser-login-lib.git/commitdiff
Added business method allMemberPublicVisibleUsers() + updated jar(s)
authorRoland Haeder <roland@mxchange.org>
Fri, 16 Oct 2015 17:05:55 +0000 (19:05 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 16 Oct 2015 20:03:10 +0000 (22:03 +0200)
lib/juser-core.jar
src/org/mxchange/jusercore/model/user/UserSessionBeanRemote.java

index ff5b3c74e1c64d288b59fb88e1e3974250580b90..24dbe54287ff32e63ba82aa0c4093b43ed0d9e61 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index 337536b23ccf4b5819c20d61fe781ab1d6ecaa5f..619e6a547f19d49dfcb8d6be7dc57154d9643ef2 100644 (file)
@@ -28,6 +28,14 @@ import javax.ejb.Remote;
 @Remote
 public interface UserSessionBeanRemote extends Serializable {
 
+       /**
+        * Returns a list with all public and member-visible users. Members are
+        * logged-in users. ;-)
+        * <p>
+        * @return A list of public and member-visible users
+        */
+       List<User> allMemberPublicVisibleUsers ();
+
        /**
         * Returns a list of all public user profiles
         * <p>
@@ -62,6 +70,7 @@ public interface UserSessionBeanRemote extends Serializable {
         * 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);