SessionSubscriber
Defines an API to track the status of the current sessions ("users logged on") on the system.
Multiple implementations can be registered; all will be called.
API
SessionSubscriber.java
interface SessionSubscriber {
void log(Type type, String username, Date date, CausedBy causedBy, UUID sessionGuid, String httpSessionId) (1)
}
1 | log(Type, String, Date, CausedBy, UUID, String)
Callback to log the session. |