gluu
公開メンバ関数 | 非公開変数類 | 静的非公開変数類 | 全メンバ一覧
org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest クラス
org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest の継承関係図
Inheritance graph
org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest 連携図
Collaboration graph

公開メンバ関数

 RegisterRequest (@JsonProperty("challenge") String challenge, @JsonProperty("appId") String appId)
 
String getChallenge ()
 
String getAppId ()
 
String getRequestId ()
 
String toString ()
 

非公開変数類

final String version = U2fConstants.U2F_PROTOCOL_VERSION
 
final String challenge
 
final String appId
 

静的非公開変数類

static final long serialVersionUID = -7804531602792040593L
 

詳解

FIDO U2F device registration request

著者
Yuriy Movchan Date: 05/13/2015

構築子と解体子

◆ RegisterRequest()

org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.RegisterRequest ( @JsonProperty("challenge") String  challenge,
@JsonProperty("appId") String  appId 
)
inline
46  {
47  this.challenge = challenge;
48  this.appId = appId;
49  }
final String challenge
Definition: RegisterRequest.java:35
final String appId
Definition: RegisterRequest.java:44

関数詳解

◆ getAppId()

String org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.getAppId ( )
inline
55  {
56  return appId;
57  }
final String appId
Definition: RegisterRequest.java:44

◆ getChallenge()

String org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.getChallenge ( )
inline
51  {
52  return challenge;
53  }
final String challenge
Definition: RegisterRequest.java:35

◆ getRequestId()

String org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.getRequestId ( )
inline
60  {
61  return getChallenge();
62  }
String getChallenge()
Definition: RegisterRequest.java:51

◆ toString()

String org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.toString ( )
inline
65  {
66  StringBuilder builder = new StringBuilder();
67  builder.append("RegisterRequest [version=").append(version).append(", challenge=").append(challenge).append(", appId=").append(appId).append("]");
68  return builder.toString();
69  }
final String challenge
Definition: RegisterRequest.java:35
final String appId
Definition: RegisterRequest.java:44
final String version
Definition: RegisterRequest.java:29

メンバ詳解

◆ appId

final String org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.appId
private

The application id that the RP would like to assert. The U2F token will enforce that the key handle provided above is associated with this application id. The browser enforces that the calling origin belongs to the application identified by the application id.

◆ challenge

final String org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.challenge
private

The websafe-base64-encoded challenge.

◆ serialVersionUID

final long org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.serialVersionUID = -7804531602792040593L
staticprivate

◆ version

final String org.xdi.oxauth.model.fido.u2f.protocol.RegisterRequest.version = U2fConstants.U2F_PROTOCOL_VERSION
private

Version of the protocol that the to-be-registered U2F token must speak. For the version of the protocol described herein, must be "U2F_V2"


このクラス詳解は次のファイルから抽出されました: