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

公開メンバ関数

String toString ()
 

静的公開メンバ関数

static Use fromString (String param)
 

公開変数類

 SIGNATURE =("sig")
 
 ENCRYPTION =("enc")
 

非公開メンバ関数

 Use (String paramName)
 

非公開変数類

final String paramName
 

詳解

著者
Javier Rojas Blum
バージョン
June 15, 2016

構築子と解体子

◆ Use()

org.xdi.oxauth.model.jwk.Use.Use ( String  paramName)
inlineprivate
29  {
30  this.paramName = paramName;
31  }
final String paramName
Definition: Use.java:27

関数詳解

◆ fromString()

static Use org.xdi.oxauth.model.jwk.Use.fromString ( String  param)
inlinestatic

Returns the corresponding Use for a parameter use of the JWK endpoint.

引数
paramThe use parameter.
戻り値
The corresponding use if found, otherwise null.
40  {
41  if (param != null) {
42  for (Use use : Use.values()) {
43  if (param.equals(use.paramName)) {
44  return use;
45  }
46  }
47  }
48  return null;
49  }
Use(String paramName)
Definition: Use.java:29

◆ toString()

String org.xdi.oxauth.model.jwk.Use.toString ( )
inline

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

戻り値
The string representation of the object.
58  {
59  return paramName;
60  }
final String paramName
Definition: Use.java:27

メンバ詳解

◆ ENCRYPTION

org.xdi.oxauth.model.jwk.Use.ENCRYPTION =("enc")

Use this constant when the key is being used for encryption.

◆ paramName

final String org.xdi.oxauth.model.jwk.Use.paramName
private

◆ SIGNATURE

org.xdi.oxauth.model.jwk.Use.SIGNATURE =("sig")

Use this constant when the key is being used for signature.


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