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

公開メンバ関数

 TokenType (String name)
 
String getValue ()
 

静的公開メンバ関数

static TokenType fromValue (String value)
 

公開変数類

 ID_TOKEN =("id_token")
 
 ACCESS_TOKEN =("access_token")
 
 LONG_LIVED_ACCESS_TOKEN =("access_token")
 
 REFRESH_TOKEN =("refresh_token")
 
 AUTHORIZATION_CODE =("authorization_code")
 

非公開変数類

final String value
 

詳解

著者
Yuriy Zabrovarnyy
バージョン
0.9, 08/01/2013

構築子と解体子

◆ TokenType()

org.xdi.oxauth.model.ldap.TokenType.TokenType ( String  name)
inline
24  {
25  value = name;
26  }
final String value
Definition: TokenType.java:22

関数詳解

◆ fromValue()

static TokenType org.xdi.oxauth.model.ldap.TokenType.fromValue ( String  value)
inlinestatic
32  {
33  if (StringUtils.isNotBlank(value)) {
34  for (TokenType t : values()) {
35  if (t.getValue().endsWith(value)) {
36  return t;
37  }
38  }
39  }
40  return null;
41  }
final String value
Definition: TokenType.java:22
TokenType(String name)
Definition: TokenType.java:24

◆ getValue()

String org.xdi.oxauth.model.ldap.TokenType.getValue ( )
inline
28  {
29  return value;
30  }
final String value
Definition: TokenType.java:22

メンバ詳解

◆ ACCESS_TOKEN

org.xdi.oxauth.model.ldap.TokenType.ACCESS_TOKEN =("access_token")

◆ AUTHORIZATION_CODE

org.xdi.oxauth.model.ldap.TokenType.AUTHORIZATION_CODE =("authorization_code")

◆ ID_TOKEN

org.xdi.oxauth.model.ldap.TokenType.ID_TOKEN =("id_token")

◆ LONG_LIVED_ACCESS_TOKEN

org.xdi.oxauth.model.ldap.TokenType.LONG_LIVED_ACCESS_TOKEN =("access_token")

◆ REFRESH_TOKEN

org.xdi.oxauth.model.ldap.TokenType.REFRESH_TOKEN =("refresh_token")

◆ value

final String org.xdi.oxauth.model.ldap.TokenType.value
private

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