Hitachi

uCosminexus Application Server Security Management Guide


15.30 The WebSSOHandler class

Description

An implementation of the JAAS CallbackHandler class that obtains session information via a Web browser. In the single sign-on library, this is CallbackHandler.

By using this class to specify references to CallbackHandler that are associated with the login modules for each system, you can achieve single sign-on functionality without changing the implementation of CallbackHandler for each system.

The package name of the WebSSOHandler class is com.cosminexus.admin.auth.sso.callback.

Syntax
class WebSSOHandler 
{
  public WebSSOHandler(HttpServletRequest request,
                           HttpServletResponse response,
                           CallbackHandler ch)
    throws ParameterError;
 
  public void handle(Callback[] callbacks)
    throws IOException, UnsupportedCallbackException;
}
Constructor and methods

Constructor/method name

Functionality

WebSSOHandler constructor

Creates an instance of the WebSSOHandler class.

handle method

Obtains session information.

Organization of this section