keycloak
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.keycloak.authentication.AuthenticationFlowException クラス
org.keycloak.authentication.AuthenticationFlowException の継承関係図
Inheritance graph
org.keycloak.authentication.AuthenticationFlowException 連携図
Collaboration graph

公開メンバ関数

 AuthenticationFlowException (AuthenticationFlowError error)
 
 AuthenticationFlowException (AuthenticationFlowError error, Response response)
 
 AuthenticationFlowException (String message, AuthenticationFlowError error)
 
 AuthenticationFlowException (String message, Throwable cause, AuthenticationFlowError error)
 
 AuthenticationFlowException (Throwable cause, AuthenticationFlowError error)
 
 AuthenticationFlowException (String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace, AuthenticationFlowError error)
 
AuthenticationFlowError getError ()
 
Response getResponse ()
 

非公開変数類

AuthenticationFlowError error
 
Response response
 

詳解

Throw this exception from an Authenticator, FormAuthenticator, or FormAction if you want to completely abort the flow.

著者
Bill Burke
バージョン
Revision
1

構築子と解体子

◆ AuthenticationFlowException() [1/6]

org.keycloak.authentication.AuthenticationFlowException.AuthenticationFlowException ( AuthenticationFlowError  error)
inline
32  {
33  this.error = error;
34  }
AuthenticationFlowError error
Definition: AuthenticationFlowException.java:29

◆ AuthenticationFlowException() [2/6]

org.keycloak.authentication.AuthenticationFlowException.AuthenticationFlowException ( AuthenticationFlowError  error,
Response  response 
)
inline
36  {
37  this.error = error;
38  this.response = response;
39  }
Response response
Definition: AuthenticationFlowException.java:30
AuthenticationFlowError error
Definition: AuthenticationFlowException.java:29

◆ AuthenticationFlowException() [3/6]

org.keycloak.authentication.AuthenticationFlowException.AuthenticationFlowException ( String  message,
AuthenticationFlowError  error 
)
inline
41  {
42  super(message);
43  this.error = error;
44  }
AuthenticationFlowError error
Definition: AuthenticationFlowException.java:29

◆ AuthenticationFlowException() [4/6]

org.keycloak.authentication.AuthenticationFlowException.AuthenticationFlowException ( String  message,
Throwable  cause,
AuthenticationFlowError  error 
)
inline
46  {
47  super(message, cause);
48  this.error = error;
49  }
AuthenticationFlowError error
Definition: AuthenticationFlowException.java:29

◆ AuthenticationFlowException() [5/6]

org.keycloak.authentication.AuthenticationFlowException.AuthenticationFlowException ( Throwable  cause,
AuthenticationFlowError  error 
)
inline
51  {
52  super(cause);
53  this.error = error;
54  }
AuthenticationFlowError error
Definition: AuthenticationFlowException.java:29

◆ AuthenticationFlowException() [6/6]

org.keycloak.authentication.AuthenticationFlowException.AuthenticationFlowException ( String  message,
Throwable  cause,
boolean  enableSuppression,
boolean  writableStackTrace,
AuthenticationFlowError  error 
)
inline
56  {
57  super(message, cause, enableSuppression, writableStackTrace);
58  this.error = error;
59  }
AuthenticationFlowError error
Definition: AuthenticationFlowException.java:29

関数詳解

◆ getError()

AuthenticationFlowError org.keycloak.authentication.AuthenticationFlowException.getError ( )
inline
61  {
62  return error;
63  }
AuthenticationFlowError error
Definition: AuthenticationFlowException.java:29

◆ getResponse()

Response org.keycloak.authentication.AuthenticationFlowException.getResponse ( )
inline
65  {
66  return response;
67  }
Response response
Definition: AuthenticationFlowException.java:30

メンバ詳解

◆ error

AuthenticationFlowError org.keycloak.authentication.AuthenticationFlowException.error
private

◆ response

Response org.keycloak.authentication.AuthenticationFlowException.response
private

このクラス詳解は次のファイルから抽出されました: