Uses of Class
com.googlecode.fascinator.portal.JsonSessionState

Packages that use JsonSessionState
com.googlecode.fascinator.portal.guitoolkit   
com.googlecode.fascinator.portal.services   
com.googlecode.fascinator.portal.services.impl   
com.googlecode.fascinator.portal.sso   
 

Uses of JsonSessionState in com.googlecode.fascinator.portal.guitoolkit
 

Methods in com.googlecode.fascinator.portal.guitoolkit with parameters of type JsonSessionState
 String GUIDisplay.renderTemplate(String portalId, String template, FormData formData, JsonSessionState sessionState)
          Render the template requested and return the contents.
 String GUIDisplay.renderTemplate(String portalId, String template, FormData formData, JsonSessionState sessionState, boolean useLayout)
          Render the template requested and return the contents.
 

Uses of JsonSessionState in com.googlecode.fascinator.portal.services
 

Methods in com.googlecode.fascinator.portal.services with parameters of type JsonSessionState
 String[] PortalSecurityManager.getRolesList(JsonSessionState session, User user)
          Get the list of roles possessed by the current user.
 User PortalSecurityManager.getUser(JsonSessionState session, String username, String source)
          Retrieve the details of a user by username
 void PortalSecurityManager.logout(JsonSessionState session, User user)
          Logout the provided user
 String DynamicPageService.render(String portalId, String pageName, OutputStream out, FormData formData, JsonSessionState sessionState)
           
 boolean PortalSecurityManager.runSsoIntegration(JsonSessionState session, FormData formData)
          Wrapper method for other SSO methods provided by the security manager.
 Map<String,Map<String,String>> PortalSecurityManager.ssoBuildLogonInterface(JsonSessionState session)
          Build a Map of Maps of on-screen string values for each SSO provider.
 boolean PortalSecurityManager.ssoCheckUserDetails(JsonSessionState session)
          Get user details from SSO connection and set them in the user session.
 String PortalSecurityManager.ssoGetRemoteLogonURL(JsonSessionState session, String source)
          Retrieve the login URL for redirection against a given provider.
 String PortalSecurityManager.ssoGetRemoteLogoutURL(JsonSessionState session, String source)
           
 String PortalSecurityManager.ssoInit(JsonSessionState session)
          Initialize the SSO Service, prepare a login if required
 boolean PortalSecurityManager.testForSso(JsonSessionState session, String resource, String uri)
          Given the provided resource, test whether SSO should be 'aware' of this resource.
 boolean PortalSecurityManager.testTrustToken(JsonSessionState session, String token)
          Validate the provided trust token.
 

Uses of JsonSessionState in com.googlecode.fascinator.portal.services.impl
 

Methods in com.googlecode.fascinator.portal.services.impl with parameters of type JsonSessionState
 String[] PortalSecurityManagerImpl.getRolesList(JsonSessionState session, User user)
          Get the list of roles possessed by the current user.
 User PortalSecurityManagerImpl.getUser(JsonSessionState session, String username, String source)
          Retrieve the details of a user by username
 void PortalSecurityManagerImpl.logout(JsonSessionState session, User user)
          Logout the provided user
 String CachingDynamicPageServiceImpl.render(String portalId, String pageName, OutputStream out, FormData formData, JsonSessionState sessionState)
          Renders the Velocity template with the specified form data.
 boolean PortalSecurityManagerImpl.runSsoIntegration(JsonSessionState session, FormData formData)
          Wrapper method for other SSO methods provided by the security manager.
 Map<String,Map<String,String>> PortalSecurityManagerImpl.ssoBuildLogonInterface(JsonSessionState session)
          Build a Map of Maps of on-screen string values for each SSO provider.
 boolean PortalSecurityManagerImpl.ssoCheckUserDetails(JsonSessionState session)
          Get user details from SSO connection and set them in the user session.
 String PortalSecurityManagerImpl.ssoGetRemoteLogonURL(JsonSessionState session, String source)
          Retrieve the login URL for redirection against a given provider.
 String PortalSecurityManagerImpl.ssoGetRemoteLogoutURL(JsonSessionState session, String source)
          Retrieve the login URL for redirection against a given provider.
 String PortalSecurityManagerImpl.ssoInit(JsonSessionState session)
          Initialize the SSO Service, prepare a login if required
 boolean PortalSecurityManagerImpl.testForSso(JsonSessionState session, String resource, String uri)
          Given the provided resource, test whether SSO should be 'aware' of this resource.
 boolean PortalSecurityManagerImpl.testTrustToken(JsonSessionState session, String token)
          Validate the provided trust token.
 

Uses of JsonSessionState in com.googlecode.fascinator.portal.sso
 

Methods in com.googlecode.fascinator.portal.sso with parameters of type JsonSessionState
 List<String> USQSSO.getRolesList(JsonSessionState session)
          Get a list of roles possessed by the current user from the SSO Service.
 List<String> OpenID.getRolesList(JsonSessionState session)
          Get a list of roles possessed by the current user from the SSO Service.
 List<String> SSOInterface.getRolesList(JsonSessionState session)
          Get a list of roles possessed by the current user if the SSO provider supports such.
 User USQSSO.getUserObject(JsonSessionState session)
          Get the current user details in a User object.
 User OpenID.getUserObject(JsonSessionState session)
          Get the current user details in a User object.
 User SSOInterface.getUserObject(JsonSessionState session)
          Get the current user details in a User object.
 void USQSSO.logout(JsonSessionState session)
          We cannot log the user out of UConnect, but we can clear Fascinator session data regarding this user.
 void OpenID.logout(JsonSessionState session)
          We cannot log the user out of UConnect, but we can clear Fascinator session data regarding this user.
 void SSOInterface.logout(JsonSessionState session)
          Logout the current user, if implementing providers do not support this at least clear Fascinator session data regarding this user.
 void USQSSO.ssoCheckUserDetails(JsonSessionState session)
          Get user details from the SSO Service and set them in the user session.
 void OpenID.ssoCheckUserDetails(JsonSessionState session)
          Get user details from the SSO Service and set them in the user session.
 void SSOInterface.ssoCheckUserDetails(JsonSessionState session)
          Get user details and set them in the user session.
 String USQSSO.ssoGetRemoteLogonURL(JsonSessionState session)
          Retrieve the login URL for redirection.
 String OpenID.ssoGetRemoteLogonURL(JsonSessionState session)
          Retrieve the login URL for redirection.
 String SSOInterface.ssoGetRemoteLogonURL(JsonSessionState session)
          Retrieve the login URL for redirection.
 void USQSSO.ssoInit(JsonSessionState session, javax.servlet.http.HttpServletRequest request)
          Initialize the SSO Service
 void OpenID.ssoInit(JsonSessionState session, javax.servlet.http.HttpServletRequest request)
          Initialize the SSO Service
 void SSOInterface.ssoInit(JsonSessionState session, javax.servlet.http.HttpServletRequest request)
          Initialize the SSO Service
 void USQSSO.ssoPrepareLogin(JsonSessionState session, String returnAddress, String server)
          Prepare the SSO Service to receive a login from the user
 void OpenID.ssoPrepareLogin(JsonSessionState session, String returnAddress, String server)
          Prepare the SSO Service to receive a login from the user
 void SSOInterface.ssoPrepareLogin(JsonSessionState session, String returnAddress, String server)
          Prepare a login with the SSO provider
 



Copyright © 2009-2013. All Rights Reserved.