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

公開メンバ関数

String getParamName ()
 
String toString ()
 
 __construct ($parameter="")
 
 getParamName ()
 
 toString ()
 

静的公開メンバ関数

static Display fromString (String param)
 
static values ()
 

公開変数類

 PAGE =("page")
 
 POPUP =("popup")
 
 TOUCH =("touch")
 
 WAP =("wap")
 
 EMBEDDED =("embedded")
 
const PAGE = "page"
 
const POPUP = "popup"
 
const TOUCH = "touch"
 
const WAP = "wap"
 
const EMBEDDED = "embedded"
 

非公開メンバ関数

 Display (String paramName)
 

非公開変数類

final String paramName
 
 $paramName
 

詳解

An ASCII string value that specifies how the Authorization Server displays the authentication and consent user interface pages to the End-User.

著者
Javier Rojas Blum Date: 02.10.2012

An ASCII string value that specifies how the Authorization Server displays the authentication and consent user interface pages to the End-User.

著者
Gabin Dongmo Date: 29/03/2013

構築子と解体子

◆ Display()

org.xdi.oxauth.model.common.Display.Display ( String  paramName)
inlineprivate
49  {
50  this.paramName = paramName;
51  }
final String paramName
Definition: Display.java:47

◆ __construct()

org.xdi.oxauth.model.common.Display.__construct (   $parameter = "")

The constructor sets the parameter name

引数
StringParameter
53  {
54  $this->paramName = $parameter;
55  }
final String paramName
Definition: Display.java:47

関数詳解

◆ fromString()

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

Returns the corresponding Display for a parameter display of the authorization endpoint.

引数
paramThe parameter.
戻り値
The corresponding response type if found, otherwise null.
64  {
65  if (param != null) {
66  for (Display rt : Display.values()) {
67  if (param.equals(rt.paramName)) {
68  return rt;
69  }
70  }
71  }
72  return null;
73  }
Display(String paramName)
Definition: Display.java:49

◆ getParamName() [1/2]

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

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

53  {
54  return paramName;
55  }
final String paramName
Definition: Display.java:47

◆ getParamName() [2/2]

org.xdi.oxauth.model.common.Display.getParamName ( )

Gets the parameter name entered

戻り値
String Parameter name

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

61  {
62  return $this->paramName;
63  }
$paramName
Definition: Display.php:47

◆ toString() [1/2]

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

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

79  {
80  return paramName;
81  }
final String paramName
Definition: Display.java:47

◆ toString() [2/2]

org.xdi.oxauth.model.common.Display.toString ( )

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

戻り値
String Parameter name
97  {
98  return $this->paramName;
99  }
$paramName
Definition: Display.php:47

◆ values()

static org.xdi.oxauth.model.common.Display.values ( )
static

Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:

foreach (Display::values() as $value) {
     return $value;
}
戻り値
Array An array containing the constants of this enum type, in the order they are declared
79  {
80  return new \ArrayIterator(
81  array(
87  )
88  );
89  }
POPUP
Definition: Display.java:28
PAGE
Definition: Display.java:22
EMBEDDED
Definition: Display.java:45
TOUCH
Definition: Display.java:35
WAP
Definition: Display.java:40

メンバ詳解

◆ $paramName

org.xdi.oxauth.model.common.Display.$paramName
private

◆ EMBEDDED [1/2]

const org.xdi.oxauth.model.common.Display.EMBEDDED = "embedded"

The Authorization Server SHOULD display authentication and consent UI consistent with the limitations of an embedded user-agent.

◆ EMBEDDED [2/2]

org.xdi.oxauth.model.common.Display.EMBEDDED =("embedded")

The Authorization Server SHOULD display authentication and consent UI consistent with the limitations of an embedded user-agent.

◆ PAGE [1/2]

const org.xdi.oxauth.model.common.Display.PAGE = "page"

The Authorization Server SHOULD display authentication and consent UI consistent with a full user-agent page view. If the display parameter is not specified this is the default display mode.

◆ PAGE [2/2]

org.xdi.oxauth.model.common.Display.PAGE =("page")

The Authorization Server SHOULD display authentication and consent UI consistent with a full user-agent page view. If the display parameter is not specified this is the default display mode.

◆ paramName

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

◆ POPUP [1/2]

const org.xdi.oxauth.model.common.Display.POPUP = "popup"

The Authorization Server SHOULD display authentication and consent UI consistent with a popup user-agent window. The popup user-agent window SHOULD be 450 pixels wide and 500 pixels tall.

◆ POPUP [2/2]

org.xdi.oxauth.model.common.Display.POPUP =("popup")

The Authorization Server SHOULD display authentication and consent UI consistent with a popup user-agent window. The popup user-agent window SHOULD be 450 pixels wide and 500 pixels tall.

◆ TOUCH [1/2]

const org.xdi.oxauth.model.common.Display.TOUCH = "touch"

The Authorization Server SHOULD display authentication and consent UI consistent with a device that leverages a touch interface. The Authorization Server MAY attempt to detect the touch device and further customize the interface.

◆ TOUCH [2/2]

org.xdi.oxauth.model.common.Display.TOUCH =("touch")

The Authorization Server SHOULD display authentication and consent UI consistent with a device that leverages a touch interface. The Authorization Server MAY attempt to detect the touch device and further customize the interface.

◆ WAP [1/2]

const org.xdi.oxauth.model.common.Display.WAP = "wap"

The Authorization Server SHOULD display authentication and consent UI consistent with a "feature phone" type display.

◆ WAP [2/2]

org.xdi.oxauth.model.common.Display.WAP =("wap")

The Authorization Server SHOULD display authentication and consent UI consistent with a "feature phone" type display.


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