Uses of Class
com.sun.identity.plugin.session.SessionException
-
Packages that use SessionException Package Description com.sun.identity.plugin.session Contains session SPI.com.sun.identity.saml2.plugins.scripted Contains classes to be used by the SAML2 scripted plugins.com.sun.identity.saml2.profile Package that handles SAML v2 profiles. -
-
Uses of SessionException in com.sun.identity.plugin.session
Methods in com.sun.identity.plugin.session that throw SessionException Modifier and Type Method Description void
SessionProvider. addListener(Object session, SessionListener listener)
Registers a listener for the session.Object
SessionProvider. 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
SessionProvider. getPrincipalName(Object session)
Returns princiapl name, or user name given the session object.String[]
SessionProvider. getProperty(Object session, String name)
Returns property value of a session object.Object
SessionProvider. getSession(String sessionID)
Returns the corresponding session object.Object
SessionProvider. getSession(javax.servlet.http.HttpServletRequest request)
Returns the corresponding session object.long
SessionProvider. getTimeLeft(Object session)
Returns the time left for this session in seconds.void
SessionProvider. 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
SessionProvider. isValid(Object session)
Returnstrue
if the session is valid.void
SessionProvider. setProperty(Object session, String name, String[] values)
Stores a property in the session object. -
Uses of SessionException in com.sun.identity.saml2.plugins.scripted
Methods in com.sun.identity.saml2.plugins.scripted that throw SessionException Modifier and Type Method Description Map<String,Set<String>>
IdpAttributeMapperScriptHelper. getAttributes(Object session, Set<String> attrNames)
Get attributes from a session.Map<String,byte[][]>
IdpAttributeMapperScriptHelper. getBinaryAttributes(Object session, Set<String> attrNames)
Get binary attributes from a session.Set<String>
IdpAttributeMapperScriptHelper. getPropertySet(Object session, String property)
Return the property value of a session object.boolean
IdpAttributeMapperScriptHelper. isSessionValid(Object session)
Check if a session is valid. -
Uses of SessionException in com.sun.identity.saml2.profile
Methods in com.sun.identity.saml2.profile that throw SessionException Modifier and Type Method Description static Map
SPACSUtils. processResponseForFedlet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, PrintWriter out)
Processes response from Identity Provider to Fedlet (SP).
-