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

公開メンバ関数

String toString ()
 
String getParameter ()
 

静的公開メンバ関数

 [static initializer]
 
static U2fErrorResponseType fromString (String param)
 

公開変数類

 SERVER_ERROR =("server_error")
 
 INVALID_REQUEST =("invalid_request")
 
 NO_ELIGABLE_DEVICES =("no_eligable_devices")
 
 DEVICE_COMPROMISED =("device_compromised")
 
 SESSION_EXPIRED =("session_expired")
 
 REGISTRATION_NOT_ALLOWED =("registration_not_allowed")
 

非公開メンバ関数

 U2fErrorResponseType (String paramName)
 

非公開変数類

final String paramName
 

静的非公開変数類

static Map< String, U2fErrorResponseTypelookup = new HashMap<String, U2fErrorResponseType>()
 

詳解

Error codes for FIDO U2F server

著者
Yuriy Movchan Date: 05/13/2015

構築子と解体子

◆ U2fErrorResponseType()

org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.U2fErrorResponseType ( String  paramName)
inlineprivate
63  {
64  this.paramName = paramName;
65  }
final String paramName
Definition: U2fErrorResponseType.java:61

関数詳解

◆ [static initializer]()

org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.[static initializer] ( )
inlinestatic

◆ fromString()

static U2fErrorResponseType org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.fromString ( String  param)
inlinestatic

Return the corresponding enumeration from a string parameter.

引数
paramThe parameter to be match.
戻り値
The enumeration if found, otherwise null.
75  {
76  return lookup.get(param);
77  }
static Map< String, U2fErrorResponseType > lookup
Definition: U2fErrorResponseType.java:53

◆ getParameter()

String org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.getParameter ( )
inline

Gets error parameter.

戻り値
error parameter

org.xdi.oxauth.model.error.IErrorTypeを実装しています。

94  {
95  return paramName;
96  }
final String paramName
Definition: U2fErrorResponseType.java:61

◆ toString()

String org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.toString ( )
inline

Returns a string representation of the object. In this case, the lower case code of the error.

84  {
85  return paramName;
86  }
final String paramName
Definition: U2fErrorResponseType.java:61

メンバ詳解

◆ DEVICE_COMPROMISED

org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.DEVICE_COMPROMISED =("device_compromised")

The registered device was compromised.

◆ INVALID_REQUEST

org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.INVALID_REQUEST =("invalid_request")

The authentication or registration request contains invalid data or signature.

◆ lookup

static Map<String, U2fErrorResponseType> org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.lookup = new HashMap<String, U2fErrorResponseType>()
staticprivate

◆ NO_ELIGABLE_DEVICES

org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.NO_ELIGABLE_DEVICES =("no_eligable_devices")

The user has no registered devices needed to build authentication request.

◆ paramName

final String org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.paramName
private

◆ REGISTRATION_NOT_ALLOWED

org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.REGISTRATION_NOT_ALLOWED =("registration_not_allowed")

The user has registered device already.

◆ SERVER_ERROR

org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.SERVER_ERROR =("server_error")

The FIDO U2F server encountered an unexpected condition which prevented it from fulfilling the request.

◆ SESSION_EXPIRED

org.xdi.oxauth.model.fido.u2f.U2fErrorResponseType.SESSION_EXPIRED =("session_expired")

The authentication or registration session was expired


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