public interface SessionProvider
Modifier and Type | Method and Description |
---|---|
void |
addListener(Object session,
SessionListener listener)
Registers a listener for the session.
|
void |
applyCookies(Object session,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
For the given user session, generate the appropriate SSO and load-balancer cookies in the response.
|
Object |
createSession(Map info,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
StringBuffer targetApplication)
Meaningful only for Service Provider side, the implementation of this
method will create a local session for the local user identified by
the information in the map.
|
String |
getPrincipalName(Object session)
Returns princiapl name, or user name given the session
object.
|
String[] |
getProperty(Object session,
String name)
Returns property value of a session object.
|
Object |
getSession(javax.servlet.http.HttpServletRequest request)
Returns the corresponding session object.
|
Object |
getSession(String sessionID)
Returns the corresponding session object.
|
String |
getSessionID(Object session)
Returns session ID.
|
long |
getTimeLeft(Object session)
Returns the time left for this session in seconds.
|
void |
invalidateSession(Object session,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
May be used by both SP and IDP side to invalidate a session.
|
boolean |
isValid(Object session)
Returns
true if the session is valid. |
void |
setLoadBalancerCookie(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Sets a load balancer cookie in the suppled HTTP response.
|
void |
setProperty(Object session,
String name,
String[] values)
Stores a property in the session object.
|
Object createSession(Map info, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, StringBuffer targetApplication) throws SessionException
info
- a Map with keys and values being of type String; The
keys will include SessionProvider.PRINCIPAL_NAME
(returned from SPAccountMapper
),
SessionProvider.REALM
,
SessionProvider.AUTH_LEVEL
,
SessionProvider.AUTH_INSTANT
, and may include
"resourceOffering"
and/or "idpEntityID"
;
The implementation of this method could choose to set some of
the information contained in the map into the newly created
Session by calling setProperty()
, later the target
application may consume the information.request
- the HttpServletRequesa
t the user made to
initiate the Single Sign On; Note that it should be the initial
request coming from the browser as opposed to the possible
subsequent back-channel HTTP request for delivering
SOAP message.response
- the HttpServletResponse
that will be sent
to the user (for example it could be used to set a cookie).targetApplication
- the original resource that was requested
as the target of the Single Sign On by the end user; If needed,
this String could be modified, e.g., by appending query
string(s) or by URL rewriting, hence this is an in/out parameter.SessionException
- if an error occurred during session creation.void applyCookies(Object session, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
session
- the current user sessionrequest
- the request used to initiate the sign-on processresponse
- the response to add the cookies toObject getSession(String sessionID) throws SessionException
sessionID
- the unique session handle.SessionException
- if an error occurred during session
retrieval.Object getSession(javax.servlet.http.HttpServletRequest request) throws SessionException
request
- the browser initiated HTTP request.SessionException
- if an error occurred during session
retrieval.void invalidateSession(Object session, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws SessionException
session
- the session to be invalidatedrequest
- the browser initiated HTTP request.response
- the HTTP response going back to browser.SessionException
- if an error occurred during session
retrieval.boolean isValid(Object session) throws SessionException
true
if the session is valid.
This is useful for toolkit clean-up thread.session
- Session object.true
if the session is valid.SessionException
String getSessionID(Object session)
String getPrincipalName(Object session) throws SessionException
session
- Session object.SessionException
- if getting the principal name
causes an error.void setProperty(Object session, String name, String[] values) throws UnsupportedOperationException, SessionException
session
- the session object.name
- the property name.values
- the property values.UnsupportedOperationException
- if this method
is not supported.SessionException
- if setting the property in
the session causes an error.String[] getProperty(Object session, String name) throws UnsupportedOperationException, SessionException
session
- the session object.name
- the property name.UnsupportedOperationException
- if this method
is not supported.SessionException
- if getting the property from
the session causes an error.void addListener(Object session, SessionListener listener) throws UnsupportedOperationException, SessionException
session
- the session object.listener
- listener for the session invalidation event.UnsupportedOperationException
- if this method
is not supported.SessionException
- if adding the listener in the
session causes an error.void setLoadBalancerCookie(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
response
- the HttpServletResponse
that will be sent
to the user.long getTimeLeft(Object session) throws SessionException
session
- Session object.SessionException
- is thrown if the session reached its maximum
session time, or the session was destroyed, or there was an error during
communication with session service.Copyright © 2010-2018, ForgeRock All Rights Reserved.