]> git.mxchange.org Git - juser-activity-lib.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Thu, 25 Aug 2016 07:22:25 +0000 (09:22 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 25 Aug 2016 07:22:25 +0000 (09:22 +0200)
- added business method for fetching all activity log
- this may be used for application-scoped beans where the whole list may be cached

src/org/mxchange/jusercore/model/user/activity/UserActivityLogSessionBeanRemote.java

index c87458a4c942a056b662f196508e42736d45ee5a..522eaf197d556dfd76b3eddf90fa9b39a4b09f2e 100644 (file)
@@ -38,4 +38,11 @@ public interface UserActivityLogSessionBeanRemote extends Serializable {
         */
        List<LogableUserActivity> fetchAllUsersActivityLog (final User user);
 
+       /**
+        * Fetches all user activity log
+        * <p>
+        * @return List with user's activity log
+        */
+       List<LogableUserActivity> fetchAllUserActivityLog ();
+
 }