|
|||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||||||
public interface AMPostAuthProcessInterface
The AMPostAuthProcessInterface interface needs to
be implemented by services and applications to do post
authentication processing.
This interface is invoked by OpenSSO Authentication service on a successful authentication , failed authentication or during logout.
This interface has three methods onLoginSuccess,
onLoginFailure and onLogout. The
onLoginSucess will be invoked when authentication
is successful. The onFailure will be invoked on failed
authentication. The onLogout is invoked during a logout.
The post processing class implementation can be configured per ORGANIZATION or SERVICE or ROLE
| メソッドの概要 | |
|---|---|
void |
onLoginFailure(Map requestParamsMap,
HttpServletRequest request,
HttpServletResponse response)
Post processing on failed authentication. |
void |
onLoginSuccess(Map requestParamsMap,
HttpServletRequest request,
HttpServletResponse response,
SSOToken ssoToken)
Post processing on successful authentication. |
void |
onLogout(HttpServletRequest request,
HttpServletResponse response,
SSOToken ssoToken)
Post processing on Logout. |
| メソッドの詳細 |
|---|
void onLoginSuccess(Map requestParamsMap,
HttpServletRequest request,
HttpServletResponse response,
SSOToken ssoToken)
throws AuthenticationException
requestParamsMap - map containing HttpServletRequest
parametersrequest - HttpServletRequest object.response - HttpServletResponse object.ssoToken - authenticated user's single sign token.
AuthenticationException - if there is an error.
void onLoginFailure(Map requestParamsMap,
HttpServletRequest request,
HttpServletResponse response)
throws AuthenticationException
requestParamsMap - map containing HttpServletRequest
parameters.request - HttpServletRequest object.response - HttpServletResponse object.
- 例外:
AuthenticationException - when there is an error.
void onLogout(HttpServletRequest request,
HttpServletResponse response,
SSOToken ssoToken)
throws AuthenticationException
request - HttpServletRequest object.response - HttpServletResponse object.ssoToken - authenticated user's single sign on token.
AuthenticationException
|
|||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||||||