Interface SingleSignOnEntry
-
- All Known Implementing Classes:
DefaultSingleSignOnEntry
public interface SingleSignOnEntry
Single sign-on cache entry.- Author:
- Paul Ferraro
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CachedIdentity
getCachedIdentity()
Returns theCachedIdentity
associated with this single sign-on entry.ConcurrentMap<String,Map.Entry<String,URI>>
getParticipants()
Returns the participants associated with this single sign-on entry.void
setCachedIdentity(CachedIdentity cachedIdentity)
Reassociates the specifiedCachedIdentity
with this single sign-on entry.
-
-
-
Method Detail
-
getCachedIdentity
CachedIdentity getCachedIdentity()
Returns theCachedIdentity
associated with this single sign-on entry.- Returns:
- a cached identity
-
setCachedIdentity
void setCachedIdentity(CachedIdentity cachedIdentity)
Reassociates the specifiedCachedIdentity
with 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.
-
-