Hitachi

uCosminexus Application Server Security Management Guide


15.20 The WebCertificateHandler class

Description

An implementation class that obtains the results of SSL authentication performed by a Web server. This is CallbackHandler in the user authentication library.

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

Syntax
class WebCertificateHandler
{
  public WebCertificateHandler(HttpServletRequest request,
                                    HttpServletResponse response,
                                    AttributeEntry[] aliases)
    throws ParameterError;
  public WebCertificateHandler(HttpServletRequest request,
                                    HttpServletResponse response,
                                    String aliasesFile)
    throws ParameterError, FormatError, FileNotFoundException,
           IOException, SecurityException;
 
  public void handle(Callback[] callbacks)
    throws IOException, UnsupportedCallbackException;
}
Constructor and methods

Constructor/method name

Functionality

WebCertificateHandler constructor

Creates an instance of the WebCertificateHandler class.

handle method

Obtains the results of SSL authentication.

Organization of this section