8.20 WebCertificateHandlerクラス

説明
WebサーバでSSL認証した結果の情報を取得するための実装クラスです。ユーザ認証ライブラリのCallbackHandlerです。
WebCertificateHandlerクラスのパッケージ名は,com.cosminexus.admin.auth.callbackです。
形式

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;
}

コンストラクタ・メソッド一覧
コンストラクタ・メソッド名機能
WebCertificateHandlerコンストラクタWebCertificateHandlerクラスのインスタンスを生成します。
handleメソッドSSL認証の結果情報を取得します。
<この節の構成>
WebCertificateHandlerコンストラクタ
handleメソッド