]> git.mxchange.org Git - juser-activity-lib.git/commitdiff
Continued a bit:
authorRoland Häder <roland@mxchange.org>
Thu, 25 Aug 2016 10:09:17 +0000 (12:09 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 25 Aug 2016 10:09:17 +0000 (12:09 +0200)
- added business method for adding single log entry
- fixed copyright + author email

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

index 522eaf197d556dfd76b3eddf90fa9b39a4b09f2e..932666277a0e9768e9b7fdfaf8d8381926972659 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Cho-Time GmbH
+ * Copyright (C) 2016 Roland Haeder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -24,7 +24,7 @@ import org.mxchange.jusercore.model.user.User;
 /**
  * A remote interface for user activity log
  * <p>
- * @author Roland Haeder<rhaeder@cho-time.de>
+ * @author Roland Haeder<roland@mxchange.org>
  */
 @Remote
 public interface UserActivityLogSessionBeanRemote extends Serializable {
@@ -45,4 +45,12 @@ public interface UserActivityLogSessionBeanRemote extends Serializable {
         */
        List<LogableUserActivity> fetchAllUserActivityLog ();
 
+       /**
+        * Adds given user activity log to database. To speedup things, a message
+        * queue is being used.
+        * <p>
+        * @param userActivity User activity log (not persisted yet)
+        */
+       void addUserActivityLog (final LogableUserActivity userActivity);
+
 }