Interface SingleSignOnSession
-
- All Superinterfaces:
AutoCloseable
,IdentityCache
- All Known Implementing Classes:
DefaultSingleSignOnSession
public interface SingleSignOnSession extends IdentityCache, AutoCloseable
Represents a single sign-on session.- Author:
- Pedro Igor
- See Also:
SingleSignOnSessionFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
close()
Closes any resources associated with this single sign-on session.String
getId()
The identifier associated with this session.boolean
logout()
Performs a local logout if the incoming request is a logout message, otherwise do nothing.-
Methods inherited from interface org.wildfly.security.cache.IdentityCache
get, put, remove
-
-
-
-
Method Detail
-
getId
String getId()
The identifier associated with this session.- Returns:
- identifier associated with this session
-
logout
boolean logout()
Performs a local logout if the incoming request is a logout message, otherwise do nothing.- Returns:
true
if local session was invalidated. Otherwise,false
-
close
void close()
Closes any resources associated with this single sign-on session.- Specified by:
close
in interfaceAutoCloseable
-
-