public interface SessionIdMapperUpdater
SessionIdMapper
entries.Modifier and Type | Field and Description |
---|---|
static SessionIdMapperUpdater |
DIRECT
SessionIdMapper entries are updated directly. |
static SessionIdMapperUpdater |
EXTERNAL
Only HTTP session is manipulated with,
SessionIdMapper entries are not updated by this updater and
they have to be updated by some other means, e.g. |
Modifier and Type | Method and Description |
---|---|
void |
clear(SessionIdMapper idMapper)
Delegates to
SessionIdMapper.clear() method.. |
void |
map(SessionIdMapper idMapper,
String sso,
String principal,
String session)
Delegates to
SessionIdMapper.map(java.lang.String, java.lang.String, java.lang.String) method. |
void |
removeSession(SessionIdMapper idMapper,
String session)
Delegates to
SessionIdMapper.removeSession(java.lang.String) method. |
static final SessionIdMapperUpdater DIRECT
SessionIdMapper
entries are updated directly.static final SessionIdMapperUpdater EXTERNAL
SessionIdMapper
entries are not updated by this updater and
they have to be updated by some other means, e.g. by some listener of HTTP session changes.void clear(SessionIdMapper idMapper)
SessionIdMapper.clear()
method..void map(SessionIdMapper idMapper, String sso, String principal, String session)
SessionIdMapper.map(java.lang.String, java.lang.String, java.lang.String)
method.idMapper
- Mappersso
- User session IDprincipal
- Principalsession
- HTTP session IDvoid removeSession(SessionIdMapper idMapper, String session)
SessionIdMapper.removeSession(java.lang.String)
method.idMapper
- Mappersession
- HTTP session ID.Copyright © 2019 JBoss by Red Hat. All rights reserved.