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

公開メンバ関数

String getParamName ()
 
String toString ()
 

静的公開メンバ関数

 [static initializer]
 
static ResponseMode getByValue (String value)
 

公開変数類

 QUERY =("query")
 
 FRAGMENT =("fragment")
 
 FORM_POST =("form_post")
 

非公開メンバ関数

 ResponseMode (String value)
 

非公開変数類

final String value
 

静的非公開変数類

static Map< String, ResponseModemapByValues = new HashMap<String, ResponseMode>()
 

詳解

著者
Javier Rojas Blum
バージョン
October 1, 2015

構築子と解体子

◆ ResponseMode()

org.xdi.oxauth.model.common.ResponseMode.ResponseMode ( String  value)
inlineprivate
45  {
46  this.value = value;
47  }
final String value
Definition: ResponseMode.java:35

関数詳解

◆ [static initializer]()

org.xdi.oxauth.model.common.ResponseMode.[static initializer] ( )
inlinestatic

◆ getByValue()

static ResponseMode org.xdi.oxauth.model.common.ResponseMode.getByValue ( String  value)
inlinestatic
49  {
50  return mapByValues.get(value);
51  }
final String value
Definition: ResponseMode.java:35
static Map< String, ResponseMode > mapByValues
Definition: ResponseMode.java:37

◆ getParamName()

String org.xdi.oxauth.model.common.ResponseMode.getParamName ( )
inline

org.xdi.oxauth.model.common.HasParamNameを実装しています。

54  {
55  return value;
56  }
final String value
Definition: ResponseMode.java:35

◆ toString()

String org.xdi.oxauth.model.common.ResponseMode.toString ( )
inline
59  {
60  return value;
61  }
final String value
Definition: ResponseMode.java:35

メンバ詳解

◆ FORM_POST

org.xdi.oxauth.model.common.ResponseMode.FORM_POST =("form_post")

In this mode, Authorization Response parameters are encoded as HTML form values that are auto-submitted in the User Agent, and thus are transmitted via the HTTP POST method to the Client, with the result parameters being encoded in the body using the application/x-www-form-urlencoded format.

◆ FRAGMENT

org.xdi.oxauth.model.common.ResponseMode.FRAGMENT =("fragment")

In this mode, Authorization Response parameters are encoded in the fragment added to the redirect_uri when redirecting back to the Client.

◆ mapByValues

static Map<String, ResponseMode> org.xdi.oxauth.model.common.ResponseMode.mapByValues = new HashMap<String, ResponseMode>()
staticprivate

◆ QUERY

org.xdi.oxauth.model.common.ResponseMode.QUERY =("query")

In this mode, Authorization Response parameters are encoded in the query string added to the redirect_uri when redirecting back to the Client.

◆ value

final String org.xdi.oxauth.model.common.ResponseMode.value
private

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