Interface SimpUser


  • public interface SimpUser
    Represents a connected user.
    Since:
    4.2
    Author:
    Rossen Stoyanchev
    • Method Detail

      • hasSessions

        boolean hasSessions()
        Whether the user has any sessions.
      • getSession

        SimpSession getSession​(String sessionId)
        Look up the session for the given id.
        Parameters:
        sessionId - the session id
        Returns:
        the matching session of null.
      • getSessions

        Set<SimpSessiongetSessions()
        Return the sessions for the user. The returned set is a copy and will never be modified.
        Returns:
        a set of session ids, or an empty set.