Interface SingleSignOnSession

All Superinterfaces:
AutoCloseable, IdentityCache
All Known Implementing Classes:
DefaultSingleSignOnSession

public interface SingleSignOnSession extends IdentityCache, AutoCloseable
Represents a single sign-on session.
Author:
Pedro Igor
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Closes any resources associated with this single sign-on session.
    The identifier associated with this session.
    boolean
    Performs a local logout if the incoming request is a logout message, otherwise do nothing.

    Methods inherited from interface org.wildfly.security.cache.IdentityCache

    get, put, remove
  • Method Details

    • getId

      String getId()
      The identifier associated with this session.
      Returns:
      identifier associated with this session
    • logout

      boolean logout()
      Performs a local logout if the incoming request is a logout message, otherwise do nothing.
      Returns:
      true if local session was invalidated. Otherwise, false
    • close

      void close()
      Closes any resources associated with this single sign-on session.
      Specified by:
      close in interface AutoCloseable