Interface SingleSignOnEntry
-
- All Known Implementing Classes:
DefaultSingleSignOnEntry
public interface SingleSignOnEntrySingle sign-on cache entry.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CachedIdentitygetCachedIdentity()Returns theCachedIdentityassociated with this single sign-on entry.ConcurrentMap<String,Map.Entry<String,URI>>getParticipants()Returns the participants associated with this single sign-on entry.voidsetCachedIdentity(CachedIdentity cachedIdentity)Reassociates the specifiedCachedIdentitywith this single sign-on entry.
-
-
-
Method Detail
-
getCachedIdentity
CachedIdentity getCachedIdentity()
Returns theCachedIdentityassociated with this single sign-on entry.- Returns:
- a cached identity
-
setCachedIdentity
void setCachedIdentity(CachedIdentity cachedIdentity)
Reassociates the specifiedCachedIdentitywith this single sign-on entry.- Parameters:
cachedIdentity- a cached identity
-
getParticipants
ConcurrentMap<String,Map.Entry<String,URI>> getParticipants()
Returns the participants associated with this single sign-on entry.- Returns:
- a mapping of application to tuple containing a session identifier and request URI.
-
-