Interface SingleSignOnManager
- All Known Implementing Classes:
DefaultSingleSignOnManager
public interface SingleSignOnManager
Manages the persistence of a
SingleSignOn entry.- Author:
- Paul Ferraro
-
Method Summary
Modifier and TypeMethodDescriptioncreate(String mechanismName, boolean programmatic, SecurityIdentity identity) Creates a single sign-on entry using the specified mechanism and security identityLocates the single sign-on entry with the specified identifier, or null if none exists.
-
Method Details
-
create
Creates a single sign-on entry using the specified mechanism and security identity- Parameters:
mechanismName- an authentication mechanism nameprogrammatic- indicates if this identity was created as a result of programmatic authenticationidentity- a security identity of the authenticated user- Returns:
- a single sign-on entry
-
find
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
-