Interface SingleSignOnManager
-
- All Known Implementing Classes:
DefaultSingleSignOnManager
public interface SingleSignOnManager
Manages the persistence of aSingleSignOn
entry.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SingleSignOn
create(String mechanismName, boolean programmatic, SecurityIdentity identity)
Creates a single sign-on entry using the specified mechanism and security identitySingleSignOn
find(String id)
Locates the single sign-on entry with the specified identifier, or null if none exists.
-
-
-
Method Detail
-
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 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
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
-
-