Class IdSessionService<S extends IdSessionType>

java.lang.Object
com.io7m.idstore.server.service.sessions.IdSessionService<S>
Type Parameters:
S - The type of sessions
All Implemented Interfaces:
com.io7m.repetoir.core.RPServiceType
Direct Known Subclasses:
IdSessionAdminService, IdSessionUserService

public abstract class IdSessionService<S extends IdSessionType> extends Object implements com.io7m.repetoir.core.RPServiceType
A service to create and manage sessions.
  • Constructor Details

  • Method Details

    • logger

      protected abstract org.slf4j.Logger logger()
    • findSession

      public final Optional<S> findSession(IdSessionSecretIdentifier id)
      Find a session with the given identifier.
      Parameters:
      id - The identifier
      Returns:
      The session
    • createSession

      public final S createSession(UUID userId)
      Create a new session.
      Parameters:
      userId - The admin ID
      Returns:
      A new session
    • deleteSession

      public void deleteSession(IdSessionSecretIdentifier id)
      Delete an existing session.
      Parameters:
      id - The session ID