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

公開メンバ関数

String toString ()
 
String getParameter ()
 

静的公開メンバ関数

static UserInfoErrorResponseType fromString (String param)
 

公開変数類

 INVALID_REQUEST =("invalid_request")
 
 INVALID_TOKEN =("invalid_token")
 
 INSUFFICIENT_SCOPE =("insufficient_scope")
 

非公開メンバ関数

 UserInfoErrorResponseType (String paramName)
 

非公開変数類

final String paramName
 

詳解

著者
Javier Rojas Date: 11.30.2011

構築子と解体子

◆ UserInfoErrorResponseType()

org.xdi.oxauth.model.userinfo.UserInfoErrorResponseType.UserInfoErrorResponseType ( String  paramName)
inlineprivate
33  {
34  this.paramName = paramName;
35  }
final String paramName
Definition: UserInfoErrorResponseType.java:31

関数詳解

◆ fromString()

static UserInfoErrorResponseType org.xdi.oxauth.model.userinfo.UserInfoErrorResponseType.fromString ( String  param)
inlinestatic
37  {
38  if (param != null) {
40  if (param.equals(err.paramName)) {
41  return err;
42  }
43  }
44  }
45 
46  return null;
47  }
UserInfoErrorResponseType(String paramName)
Definition: UserInfoErrorResponseType.java:33

◆ getParameter()

String org.xdi.oxauth.model.userinfo.UserInfoErrorResponseType.getParameter ( )
inline

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

60  {
61  return paramName;
62  }
final String paramName
Definition: UserInfoErrorResponseType.java:31

◆ toString()

String org.xdi.oxauth.model.userinfo.UserInfoErrorResponseType.toString ( )
inline

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

戻り値
The string representation of the object.
55  {
56  return paramName;
57  }
final String paramName
Definition: UserInfoErrorResponseType.java:31

メンバ詳解

◆ INSUFFICIENT_SCOPE

org.xdi.oxauth.model.userinfo.UserInfoErrorResponseType.INSUFFICIENT_SCOPE =("insufficient_scope")

The request requires higher privileges than provided by the access token.

◆ INVALID_REQUEST

org.xdi.oxauth.model.userinfo.UserInfoErrorResponseType.INVALID_REQUEST =("invalid_request")

The request is missing a required parameter, includes an unsupported parameter or parameter value, repeats the same parameter, uses more than one method for including an access token, or is otherwise malformed.

◆ INVALID_TOKEN

org.xdi.oxauth.model.userinfo.UserInfoErrorResponseType.INVALID_TOKEN =("invalid_token")

The access token provided is expired, revoked, malformed, or invalid for other reasons. Try to request a new access token and retry the protected resource.

◆ paramName

final String org.xdi.oxauth.model.userinfo.UserInfoErrorResponseType.paramName
private

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