/*
- * 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
/**
* 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 {
*/
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);
+
}