gluu
公開メンバ関数 | 静的公開メンバ関数 | 公開変数類 | 非公開メンバ関数 | 非公開変数類 | 全メンバ一覧
列挙 org.xdi.oxauth.model.session.EndSessionErrorResponseType 詳解
org.xdi.oxauth.model.session.EndSessionErrorResponseType の継承関係図
Inheritance graph
org.xdi.oxauth.model.session.EndSessionErrorResponseType 連携図
Collaboration graph

公開メンバ関数

String toString ()
 
String getParameter ()
 

静的公開メンバ関数

static EndSessionErrorResponseType fromString (String param)
 

公開変数類

 INVALID_GRANT =("invalid_grant")
 
 INVALID_REQUEST =("invalid_request")
 
 INVALID_GRANT_AND_SESSION =("invalid_grant_and_session")
 
 SESSION_NOT_PASSED =("session_not_passed")
 
 POST_LOGOUT_URI_NOT_PASSED =("post_logout_uri_not_passed")
 
 POST_LOGOUT_URI_NOT_ASSOCIATED_WITH_CLIENT =("post_logout_uri_not_associated_with_client")
 

非公開メンバ関数

 EndSessionErrorResponseType (String paramName)
 

非公開変数類

final String paramName
 

詳解

Error codes for End Session error responses.

著者
Javier Rojas Blum Date: 12.16.2011

構築子と解体子

◆ EndSessionErrorResponseType()

org.xdi.oxauth.model.session.EndSessionErrorResponseType.EndSessionErrorResponseType ( String  paramName)
inlineprivate
50  {
51  this.paramName = paramName;
52  }
final String paramName
Definition: EndSessionErrorResponseType.java:48

関数詳解

◆ fromString()

static EndSessionErrorResponseType org.xdi.oxauth.model.session.EndSessionErrorResponseType.fromString ( String  param)
inlinestatic

Returns the corresponding EndSessionErrorResponseType from a given string.

引数
paramThe string value to convert.
戻り値
The corresponding EndSessionErrorResponseType, otherwise null.
60  {
61  if (param != null) {
63  .values()) {
64  if (param.equals(err.paramName)) {
65  return err;
66  }
67  }
68  }
69  return null;
70  }
EndSessionErrorResponseType(String paramName)
Definition: EndSessionErrorResponseType.java:50

◆ getParameter()

String org.xdi.oxauth.model.session.EndSessionErrorResponseType.getParameter ( )
inline

Gets error parameter.

戻り値
error parameter

org.xdi.oxauth.model.error.IErrorTypeを実装しています。

88  {
89  return paramName;
90  }
final String paramName
Definition: EndSessionErrorResponseType.java:48

◆ toString()

String org.xdi.oxauth.model.session.EndSessionErrorResponseType.toString ( )
inline

Returns a string representation of the object. In this case the parameter name.

戻り値
The string representation of the object.
78  {
79  return paramName;
80  }
final String paramName
Definition: EndSessionErrorResponseType.java:48

メンバ詳解

◆ INVALID_GRANT

org.xdi.oxauth.model.session.EndSessionErrorResponseType.INVALID_GRANT =("invalid_grant")

The provided access token is invalid, or was issued to another client.

◆ INVALID_GRANT_AND_SESSION

org.xdi.oxauth.model.session.EndSessionErrorResponseType.INVALID_GRANT_AND_SESSION =("invalid_grant_and_session")

The provided access token and session state are invalid or were issued to another client.

◆ INVALID_REQUEST

org.xdi.oxauth.model.session.EndSessionErrorResponseType.INVALID_REQUEST =("invalid_request")

The request is missing a required parameter, includes an unsupported parameter or parameter value, repeats a parameter, or is otherwise malformed.

◆ paramName

final String org.xdi.oxauth.model.session.EndSessionErrorResponseType.paramName
private

◆ POST_LOGOUT_URI_NOT_ASSOCIATED_WITH_CLIENT

org.xdi.oxauth.model.session.EndSessionErrorResponseType.POST_LOGOUT_URI_NOT_ASSOCIATED_WITH_CLIENT =("post_logout_uri_not_associated_with_client")

The provided post logout uri is not associated with client

◆ POST_LOGOUT_URI_NOT_PASSED

org.xdi.oxauth.model.session.EndSessionErrorResponseType.POST_LOGOUT_URI_NOT_PASSED =("post_logout_uri_not_passed")

The provided post logout uri is empty.

◆ SESSION_NOT_PASSED

org.xdi.oxauth.model.session.EndSessionErrorResponseType.SESSION_NOT_PASSED =("session_not_passed")

The provided session state is empty.


次のファイルからこの列挙についての詳解を抽出しました: