Servlet(サーブレット)リファレンス(逆引き)

Servlet(サーブレット)リファレンス
 
Web struts.wasureppoi.com
認証情報の種類を取得する:HttpServletRequest#getAuthType()
スポンサード リンク

認証情報の種類を取得する:HttpServletRequest#getAuthType()を使用する。

構文
javax.servlet.http.HttpServletRequest
 public String getAuthType( )
説明
getAuthTypeメソッドは、認証情報の種類を返します。

認証に種類は以下のいづれかになります。
   BASIC_AUTH、FORM_AUTH、 CLIENT_CERT_AUTH、DIGEST_AUTH

リクエストが認証されていない場合は nullを返します。
  
例1) リクエストの認証情報の種類を取得する。

public class SampleServlet extends HttpServlet {

  public void doGet( HttpServletRequest request, HttpServletResponse response )
      throws ServletException,IOException {

    response.setContentType("text/html;charset=Windows-31J");

    PrintWriter out = response.getWriter();
    out.println("<html><body>");
    out.println("AuthType=" + request.getAuthType());
    out.println("</body></html>");
   }
}



スポンサード リンク


認証情報の種類を取得する:HttpServletRequest#getAuthType()
ユーザーのログイン名を取得する:HttpServletRequest#getRemoteUser()
Principalオブジェクトをを取得する:HttpServletRequest#getUserPrincipal()
ロールメンバか確認する:HttpServletRequest#isUserInRole()

Servletへ
忘れっぽいエンジニアのJakarta Strutsリファレンス TOPへ