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

公開メンバ関数

 ClientTokens (String clientId)
 
String getClientId ()
 
void setClientId (String clientId)
 
Set< String > getTokenHashes ()
 
void setTokenHashes (Set< String > tokenHashes)
 
String cacheKey ()
 
String toString ()
 

非公開変数類

String clientId
 
Set< String > tokenHashes = new HashSet<String>()
 

詳解

著者
yuriyz

構築子と解体子

◆ ClientTokens()

org.xdi.oxauth.model.common.ClientTokens.ClientTokens ( String  clientId)
inline
18  {
19  this.clientId = clientId;
20  }
String clientId
Definition: ClientTokens.java:14

関数詳解

◆ cacheKey()

String org.xdi.oxauth.model.common.ClientTokens.cacheKey ( )
inline
38  {
39  Preconditions.checkState(StringHelper.isNotEmpty(clientId));
40  return clientId + "_tokens";
41  }
String clientId
Definition: ClientTokens.java:14

◆ getClientId()

String org.xdi.oxauth.model.common.ClientTokens.getClientId ( )
inline
22  {
23  return clientId;
24  }
String clientId
Definition: ClientTokens.java:14

◆ getTokenHashes()

Set<String> org.xdi.oxauth.model.common.ClientTokens.getTokenHashes ( )
inline
30  {
31  return tokenHashes;
32  }
Set< String > tokenHashes
Definition: ClientTokens.java:16

◆ setClientId()

void org.xdi.oxauth.model.common.ClientTokens.setClientId ( String  clientId)
inline
26  {
27  this.clientId = clientId;
28  }
String clientId
Definition: ClientTokens.java:14

◆ setTokenHashes()

void org.xdi.oxauth.model.common.ClientTokens.setTokenHashes ( Set< String >  tokenHashes)
inline
34  {
35  this.tokenHashes = tokenHashes;
36  }
Set< String > tokenHashes
Definition: ClientTokens.java:16

◆ toString()

String org.xdi.oxauth.model.common.ClientTokens.toString ( )
inline
44  {
45  return "ClientTokens{" +
46  "clientId='" + clientId + '\'' +
47  ", tokenHashes=" + tokenHashes +
48  '}';
49  }
Set< String > tokenHashes
Definition: ClientTokens.java:16
String clientId
Definition: ClientTokens.java:14

メンバ詳解

◆ clientId

String org.xdi.oxauth.model.common.ClientTokens.clientId
private

◆ tokenHashes

Set<String> org.xdi.oxauth.model.common.ClientTokens.tokenHashes = new HashSet<String>()
private

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