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

公開メンバ関数

String toString ()
 

静的公開メンバ関数

static ApplicationType fromString (String param)
 

公開変数類

 NATIVE =("native")
 
 WEB =("web")
 

非公開メンバ関数

 ApplicationType (String paramName)
 

非公開変数類

final String paramName
 

詳解

著者
Javier Rojas Blum Date: 01.12.2012

構築子と解体子

◆ ApplicationType()

org.xdi.oxauth.model.register.ApplicationType.ApplicationType ( String  paramName)
inlineprivate
32  {
33  this.paramName = paramName;
34  }
final String paramName
Definition: ApplicationType.java:30

関数詳解

◆ fromString()

static ApplicationType org.xdi.oxauth.model.register.ApplicationType.fromString ( String  param)
inlinestatic

Returns the corresponding ApplicationType from a given string. The default if not specified is web.

引数
paramThe string value to convert.
戻り値
The corresponding ApplicationType, otherwise null.
43  {
44  if (param != null) {
45  for (ApplicationType at : ApplicationType.values()) {
46  if (param.equals(at.paramName)) {
47  return at;
48  }
49  }
50  }
51  return WEB;
52  }
WEB
Definition: ApplicationType.java:28
ApplicationType(String paramName)
Definition: ApplicationType.java:32

◆ toString()

String org.xdi.oxauth.model.register.ApplicationType.toString ( )
inline

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

戻り値
The string representation of the object.
60  {
61  return paramName;
62  }
final String paramName
Definition: ApplicationType.java:30

メンバ詳解

◆ NATIVE

org.xdi.oxauth.model.register.ApplicationType.NATIVE =("native")

Clients incapable of maintaining the confidentiality of their credentials (e.g. clients executing on the resource owner's device such as an installed native application or a web browser-based application), and incapable of secure client authentication via any other mean.

◆ paramName

final String org.xdi.oxauth.model.register.ApplicationType.paramName
private

◆ WEB

org.xdi.oxauth.model.register.ApplicationType.WEB =("web")

Clients capable of maintaining the confidentiality of their credentials (e.g. client implemented on a secure server with restricted access to the client credentials), or capable of secure client authentication using other means.


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