Interface SingleSignOnManager

All Known Implementing Classes:
DefaultSingleSignOnManager

public interface SingleSignOnManager
Manages the persistence of a SingleSignOn entry.
Author:
Paul Ferraro
  • Method Summary

    Modifier and Type
    Method
    Description
    create(String mechanismName, boolean programmatic, SecurityIdentity identity)
    Creates a single sign-on entry using the specified mechanism and security identity
    Locates the single sign-on entry with the specified identifier, or null if none exists.
  • Method Details

    • create

      SingleSignOn create(String mechanismName, boolean programmatic, SecurityIdentity identity)
      Creates a single sign-on entry using the specified mechanism and security identity
      Parameters:
      mechanismName - an authentication mechanism name
      programmatic - indicates if this identity was created as a result of programmatic authentication
      identity - a security identity of the authenticated user
      Returns:
      a single sign-on entry
    • find

      SingleSignOn find(String id)
      Locates the single sign-on entry with the specified identifier, or null if none exists.
      Parameters:
      id - a single sign-on entry identifier
      Returns:
      a single sign-on entry, or null if none was found