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

公開メンバ関数

String toString ()
 

静的公開メンバ関数

static ClientAssertionType fromString (String param)
 

公開変数類

 JWT_BEARER =("urn:ietf:params:oauth:client-assertion-type:jwt-bearer")
 

非公開メンバ関数

 ClientAssertionType (String paramName)
 

非公開変数類

final String paramName
 

詳解

著者
Javier Rojas Blum Date: 04.13.2012

構築子と解体子

◆ ClientAssertionType()

org.xdi.oxauth.model.token.ClientAssertionType.ClientAssertionType ( String  paramName)
inlineprivate
18  {
19  this.paramName = paramName;
20  }
final String paramName
Definition: ClientAssertionType.java:16

関数詳解

◆ fromString()

static ClientAssertionType org.xdi.oxauth.model.token.ClientAssertionType.fromString ( String  param)
inlinestatic

Returns the corresponding ClientAssertionType for a parameter client_assertion_type.

引数
paramThe client_assertion_type parameter.
戻り値
The corresponding token type if found, otherwise null.
29  {
30  if (param != null) {
31  for (ClientAssertionType cat : ClientAssertionType.values()) {
32  if (param.equals(cat.paramName)) {
33  return cat;
34  }
35  }
36  }
37  return null;
38  }
ClientAssertionType(String paramName)
Definition: ClientAssertionType.java:18

◆ toString()

String org.xdi.oxauth.model.token.ClientAssertionType.toString ( )
inline

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

戻り値
The string representation of the object.
47  {
48  return paramName;
49  }
final String paramName
Definition: ClientAssertionType.java:16

メンバ詳解

◆ JWT_BEARER

org.xdi.oxauth.model.token.ClientAssertionType.JWT_BEARER =("urn:ietf:params:oauth:client-assertion-type:jwt-bearer")

◆ paramName

final String org.xdi.oxauth.model.token.ClientAssertionType.paramName
private

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