gluu
公開メンバ関数 | 静的公開メンバ関数 | 公開変数類 | 非公開メンバ関数 | 非公開変数類 | 全メンバ一覧
列挙 org.xdi.oxauth.model.common.DefaultScope 詳解
org.xdi.oxauth.model.common.DefaultScope 連携図
Collaboration graph

公開メンバ関数

String toString ()
 

静的公開メンバ関数

static DefaultScope fromString (String param)
 

公開変数類

 OPEN_ID =("openid")
 
 PROFILE =("profile")
 
 EMAIL =("email")
 
 ADDRESS =("address")
 
 PHONE =("phone")
 

非公開メンバ関数

 DefaultScope (String paramName)
 

非公開変数類

final String paramName
 

詳解

著者
Javier Rojas Date: 11.30.2011

構築子と解体子

◆ DefaultScope()

org.xdi.oxauth.model.common.DefaultScope.DefaultScope ( String  paramName)
inlineprivate
21  {
22  this.paramName = paramName;
23  }
final String paramName
Definition: DefaultScope.java:19

関数詳解

◆ fromString()

static DefaultScope org.xdi.oxauth.model.common.DefaultScope.fromString ( String  param)
inlinestatic

Returns the corresponding DefaultScope for a default scope parameter.

引数
paramThe default scope parameter.
戻り値
The corresponding scope if found, otherwise null.
31  {
32  if (param != null) {
33  for (DefaultScope ds : DefaultScope.values()) {
34  if (param.equals(ds.paramName)) {
35  return ds;
36  }
37  }
38  }
39  return null;
40  }
DefaultScope(String paramName)
Definition: DefaultScope.java:21

◆ toString()

String org.xdi.oxauth.model.common.DefaultScope.toString ( )
inline

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

46  {
47  return paramName;
48  }
final String paramName
Definition: DefaultScope.java:19

メンバ詳解

◆ ADDRESS

org.xdi.oxauth.model.common.DefaultScope.ADDRESS =("address")

◆ EMAIL

org.xdi.oxauth.model.common.DefaultScope.EMAIL =("email")

◆ OPEN_ID

org.xdi.oxauth.model.common.DefaultScope.OPEN_ID =("openid")

◆ paramName

final String org.xdi.oxauth.model.common.DefaultScope.paramName
private

◆ PHONE

org.xdi.oxauth.model.common.DefaultScope.PHONE =("phone")

◆ PROFILE

org.xdi.oxauth.model.common.DefaultScope.PROFILE =("profile")

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