gluu
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.xdi.oxd.common.response.AuthorizationCodeFlowResponse クラス
org.xdi.oxd.common.response.AuthorizationCodeFlowResponse の継承関係図
Inheritance graph
org.xdi.oxd.common.response.AuthorizationCodeFlowResponse 連携図
Collaboration graph

公開メンバ関数

 AuthorizationCodeFlowResponse ()
 
String getIdToken ()
 
void setIdToken (String idToken)
 
String getAccessToken ()
 
void setAccessToken (String p_patToken)
 
long getExpiresIn ()
 
void setExpiresIn (long p_expiresIn)
 
String getRefreshToken ()
 
void setRefreshToken (String p_patRefreshToken)
 
String getAuthorizationCode ()
 
void setAuthorizationCode (String p_authorizationCode)
 
String getScope ()
 
void setScope (String p_scope)
 
String toString ()
 

非公開変数類

String accessToken
 
long expiresIn
 
String refreshToken
 
String authorizationCode
 
String scope
 
String idToken
 

詳解

著者
Yuriy Zabrovarnyy
バージョン
0.9, 19/06/2015

構築子と解体子

◆ AuthorizationCodeFlowResponse()

org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.AuthorizationCodeFlowResponse ( )
inline
29  {
30  }

関数詳解

◆ getAccessToken()

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.getAccessToken ( )
inline
40  {
41  return accessToken;
42  }
String accessToken
Definition: AuthorizationCodeFlowResponse.java:16

◆ getAuthorizationCode()

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.getAuthorizationCode ( )
inline
64  {
65  return authorizationCode;
66  }
String authorizationCode
Definition: AuthorizationCodeFlowResponse.java:22

◆ getExpiresIn()

long org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.getExpiresIn ( )
inline
48  {
49  return expiresIn;
50  }
long expiresIn
Definition: AuthorizationCodeFlowResponse.java:18

◆ getIdToken()

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.getIdToken ( )
inline
32  {
33  return idToken;
34  }
String idToken
Definition: AuthorizationCodeFlowResponse.java:26

◆ getRefreshToken()

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.getRefreshToken ( )
inline
56  {
57  return refreshToken;
58  }
String refreshToken
Definition: AuthorizationCodeFlowResponse.java:20

◆ getScope()

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.getScope ( )
inline
72  {
73  return scope;
74  }
String scope
Definition: AuthorizationCodeFlowResponse.java:24

◆ setAccessToken()

void org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.setAccessToken ( String  p_patToken)
inline
44  {
45  accessToken = p_patToken;
46  }
String accessToken
Definition: AuthorizationCodeFlowResponse.java:16

◆ setAuthorizationCode()

void org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.setAuthorizationCode ( String  p_authorizationCode)
inline
68  {
69  authorizationCode = p_authorizationCode;
70  }
String authorizationCode
Definition: AuthorizationCodeFlowResponse.java:22

◆ setExpiresIn()

void org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.setExpiresIn ( long  p_expiresIn)
inline
52  {
53  expiresIn = p_expiresIn;
54  }
long expiresIn
Definition: AuthorizationCodeFlowResponse.java:18

◆ setIdToken()

void org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.setIdToken ( String  idToken)
inline
36  {
37  this.idToken = idToken;
38  }
String idToken
Definition: AuthorizationCodeFlowResponse.java:26

◆ setRefreshToken()

void org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.setRefreshToken ( String  p_patRefreshToken)
inline
60  {
61  refreshToken = p_patRefreshToken;
62  }
String refreshToken
Definition: AuthorizationCodeFlowResponse.java:20

◆ setScope()

void org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.setScope ( String  p_scope)
inline
76  {
77  scope = p_scope;
78  }
String scope
Definition: AuthorizationCodeFlowResponse.java:24

◆ toString()

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.toString ( )
inline
81  {
82  final StringBuilder sb = new StringBuilder();
83  sb.append("AuthorizationCodeFlowResponse");
84  sb.append("{accessToken='").append(accessToken).append('\'');
85  sb.append(", expiresIn=").append(expiresIn);
86  sb.append(", refreshToken='").append(refreshToken).append('\'');
87  sb.append(", authorizationCode='").append(authorizationCode).append('\'');
88  sb.append(", scope='").append(scope).append('\'');
89  sb.append(", idToken='").append(idToken).append('\'');
90  sb.append('}');
91  return sb.toString();
92  }
long expiresIn
Definition: AuthorizationCodeFlowResponse.java:18
String scope
Definition: AuthorizationCodeFlowResponse.java:24
String authorizationCode
Definition: AuthorizationCodeFlowResponse.java:22
String refreshToken
Definition: AuthorizationCodeFlowResponse.java:20
String accessToken
Definition: AuthorizationCodeFlowResponse.java:16
String idToken
Definition: AuthorizationCodeFlowResponse.java:26

メンバ詳解

◆ accessToken

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.accessToken
private

◆ authorizationCode

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.authorizationCode
private

◆ expiresIn

long org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.expiresIn
private

◆ idToken

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.idToken
private

◆ refreshToken

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.refreshToken
private

◆ scope

String org.xdi.oxd.common.response.AuthorizationCodeFlowResponse.scope
private

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