keycloak
公開メンバ関数 | 静的公開変数類 | 限定公開変数類 | 全メンバ一覧
org.keycloak.OAuthErrorException クラス
org.keycloak.OAuthErrorException の継承関係図
Inheritance graph
org.keycloak.OAuthErrorException 連携図
Collaboration graph

公開メンバ関数

 OAuthErrorException (String error, String description, String message, Throwable cause)
 
 OAuthErrorException (String error, String description, String message)
 
 OAuthErrorException (String error, String description)
 
 OAuthErrorException (String error, String description, Throwable cause)
 
 OAuthErrorException (String error)
 
 OAuthErrorException (String error, Throwable cause)
 
String getError ()
 
void setError (String error)
 
String getDescription ()
 
void setDescription (String description)
 

静的公開変数類

static final String INVALID_REQUEST = "invalid_request"
 
static final String INVALID_SCOPE = "invalid_scope"
 
static final String UNAUTHORIZED_CLIENT = "unauthorized_client"
 
static final String ACCESS_DENIED = "access_denied"
 
static final String UNSUPPORTED_RESPONSE_TYPE = "unsupported_response_type"
 
static final String SERVER_ERROR = "server_error"
 
static final String TEMPORARILY_UNAVAILABLE = "temporarily_unavailable"
 
static final String INTERACTION_REQUIRED = "interaction_required"
 
static final String LOGIN_REQUIRED = "login_required"
 
static final String REQUEST_NOT_SUPPORTED = "request_not_supported"
 
static final String REQUEST_URI_NOT_SUPPORTED = "request_uri_not_supported"
 
static final String INVALID_TOKEN = "invalid_token"
 
static final String INSUFFICIENT_SCOPE = "insufficient_scope"
 
static final String INVALID_REDIRECT_URI = "invalid_redirect_uri"
 
static final String INVALID_CLIENT_METADATA = "invalid_client_metadata"
 
static final String INVALID_CLIENT = "invalid_client"
 
static final String INVALID_GRANT = "invalid_grant"
 
static final String UNSUPPORTED_GRANT_TYPE = "unsupported_grant_type"
 

限定公開変数類

String error
 
String description
 

詳解

著者
Bill Burke
バージョン
Revision
1

構築子と解体子

◆ OAuthErrorException() [1/6]

org.keycloak.OAuthErrorException.OAuthErrorException ( String  error,
String  description,
String  message,
Throwable  cause 
)
inline
53  {
54  super(message, cause);
55  this.error = error;
56  this.description = description;
57  }
String description
Definition: OAuthErrorException.java:85
String error
Definition: OAuthErrorException.java:84

◆ OAuthErrorException() [2/6]

org.keycloak.OAuthErrorException.OAuthErrorException ( String  error,
String  description,
String  message 
)
inline
58  {
59  super(message);
60  this.error = error;
61  this.description = description;
62  }
String description
Definition: OAuthErrorException.java:85
String error
Definition: OAuthErrorException.java:84

◆ OAuthErrorException() [3/6]

org.keycloak.OAuthErrorException.OAuthErrorException ( String  error,
String  description 
)
inline
63  {
64  super(description);
65  this.error = error;
66  this.description = description;
67  }
String description
Definition: OAuthErrorException.java:85
String error
Definition: OAuthErrorException.java:84

◆ OAuthErrorException() [4/6]

org.keycloak.OAuthErrorException.OAuthErrorException ( String  error,
String  description,
Throwable  cause 
)
inline
68  {
69  super(description, cause);
70  this.error = error;
71  this.description = description;
72  }
String description
Definition: OAuthErrorException.java:85
String error
Definition: OAuthErrorException.java:84

◆ OAuthErrorException() [5/6]

org.keycloak.OAuthErrorException.OAuthErrorException ( String  error)
inline
74  {
75  super(error);
76  this.error = error;
77  }
String error
Definition: OAuthErrorException.java:84

◆ OAuthErrorException() [6/6]

org.keycloak.OAuthErrorException.OAuthErrorException ( String  error,
Throwable  cause 
)
inline
78  {
79  super(error, cause);
80  this.error = error;
81  }
String error
Definition: OAuthErrorException.java:84

関数詳解

◆ getDescription()

String org.keycloak.OAuthErrorException.getDescription ( )
inline
95  {
96  return description;
97  }
String description
Definition: OAuthErrorException.java:85

◆ getError()

String org.keycloak.OAuthErrorException.getError ( )
inline
87  {
88  return error;
89  }
String error
Definition: OAuthErrorException.java:84

◆ setDescription()

void org.keycloak.OAuthErrorException.setDescription ( String  description)
inline
99  {
100  this.description = description;
101  }
String description
Definition: OAuthErrorException.java:85

◆ setError()

void org.keycloak.OAuthErrorException.setError ( String  error)
inline
91  {
92  this.error = error;
93  }
String error
Definition: OAuthErrorException.java:84

メンバ詳解

◆ ACCESS_DENIED

final String org.keycloak.OAuthErrorException.ACCESS_DENIED = "access_denied"
static

◆ description

String org.keycloak.OAuthErrorException.description
protected

◆ error

String org.keycloak.OAuthErrorException.error
protected

◆ INSUFFICIENT_SCOPE

final String org.keycloak.OAuthErrorException.INSUFFICIENT_SCOPE = "insufficient_scope"
static

◆ INTERACTION_REQUIRED

final String org.keycloak.OAuthErrorException.INTERACTION_REQUIRED = "interaction_required"
static

◆ INVALID_CLIENT

final String org.keycloak.OAuthErrorException.INVALID_CLIENT = "invalid_client"
static

◆ INVALID_CLIENT_METADATA

final String org.keycloak.OAuthErrorException.INVALID_CLIENT_METADATA = "invalid_client_metadata"
static

◆ INVALID_GRANT

final String org.keycloak.OAuthErrorException.INVALID_GRANT = "invalid_grant"
static

◆ INVALID_REDIRECT_URI

final String org.keycloak.OAuthErrorException.INVALID_REDIRECT_URI = "invalid_redirect_uri"
static

◆ INVALID_REQUEST

final String org.keycloak.OAuthErrorException.INVALID_REQUEST = "invalid_request"
static

◆ INVALID_SCOPE

final String org.keycloak.OAuthErrorException.INVALID_SCOPE = "invalid_scope"
static

◆ INVALID_TOKEN

final String org.keycloak.OAuthErrorException.INVALID_TOKEN = "invalid_token"
static

◆ LOGIN_REQUIRED

final String org.keycloak.OAuthErrorException.LOGIN_REQUIRED = "login_required"
static

◆ REQUEST_NOT_SUPPORTED

final String org.keycloak.OAuthErrorException.REQUEST_NOT_SUPPORTED = "request_not_supported"
static

◆ REQUEST_URI_NOT_SUPPORTED

final String org.keycloak.OAuthErrorException.REQUEST_URI_NOT_SUPPORTED = "request_uri_not_supported"
static

◆ SERVER_ERROR

final String org.keycloak.OAuthErrorException.SERVER_ERROR = "server_error"
static

◆ TEMPORARILY_UNAVAILABLE

final String org.keycloak.OAuthErrorException.TEMPORARILY_UNAVAILABLE = "temporarily_unavailable"
static

◆ UNAUTHORIZED_CLIENT

final String org.keycloak.OAuthErrorException.UNAUTHORIZED_CLIENT = "unauthorized_client"
static

◆ UNSUPPORTED_GRANT_TYPE

final String org.keycloak.OAuthErrorException.UNSUPPORTED_GRANT_TYPE = "unsupported_grant_type"
static

◆ UNSUPPORTED_RESPONSE_TYPE

final String org.keycloak.OAuthErrorException.UNSUPPORTED_RESPONSE_TYPE = "unsupported_response_type"
static

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