keycloak
クラス | 公開メンバ関数 | 限定公開変数類 | 全メンバ一覧
org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity クラス
org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity 連携図
Collaboration graph

クラス

class  Key
 

公開メンバ関数

FederatedUserConsentEntity getUserConsent ()
 
void setUserConsent (FederatedUserConsentEntity userConsent)
 
String getScopeId ()
 
void setScopeId (String scopeId)
 
boolean equals (Object o)
 
int hashCode ()
 

限定公開変数類

FederatedUserConsentEntity userConsent
 
String scopeId
 

詳解

著者
Marek Posolda

関数詳解

◆ equals()

boolean org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity.equals ( Object  o)
inline
76  {
77  if (this == o) return true;
78  if (o == null) return false;
79  if (!(o instanceof FederatedUserConsentClientScopeEntity)) return false;
80 
81  FederatedUserConsentClientScopeEntity that = ( FederatedUserConsentClientScopeEntity)o;
82  FederatedUserConsentClientScopeEntity.Key myKey = new FederatedUserConsentClientScopeEntity.Key(this.userConsent, this.scopeId);
83  FederatedUserConsentClientScopeEntity.Key hisKey = new FederatedUserConsentClientScopeEntity.Key(that.userConsent, that.scopeId);
84  return myKey.equals(hisKey);
85  }
String scopeId
Definition: FederatedUserConsentClientScopeEntity.java:57
FederatedUserConsentEntity userConsent
Definition: FederatedUserConsentClientScopeEntity.java:53

◆ getScopeId()

String org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity.getScopeId ( )
inline
67  {
68  return scopeId;
69  }
String scopeId
Definition: FederatedUserConsentClientScopeEntity.java:57

◆ getUserConsent()

FederatedUserConsentEntity org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity.getUserConsent ( )
inline
59  {
60  return userConsent;
61  }
FederatedUserConsentEntity userConsent
Definition: FederatedUserConsentClientScopeEntity.java:53

◆ hashCode()

int org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity.hashCode ( )
inline
88  {
89  FederatedUserConsentClientScopeEntity.Key myKey = new FederatedUserConsentClientScopeEntity.Key(this.userConsent, this.scopeId);
90  return myKey.hashCode();
91  }
String scopeId
Definition: FederatedUserConsentClientScopeEntity.java:57
FederatedUserConsentEntity userConsent
Definition: FederatedUserConsentClientScopeEntity.java:53

◆ setScopeId()

void org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity.setScopeId ( String  scopeId)
inline
71  {
72  this.scopeId = scopeId;
73  }
String scopeId
Definition: FederatedUserConsentClientScopeEntity.java:57

◆ setUserConsent()

void org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity.setUserConsent ( FederatedUserConsentEntity  userConsent)
inline
63  {
64  this.userConsent = userConsent;
65  }
FederatedUserConsentEntity userConsent
Definition: FederatedUserConsentClientScopeEntity.java:53

メンバ詳解

◆ scopeId

String org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity.scopeId
protected

◆ userConsent

FederatedUserConsentEntity org.keycloak.storage.jpa.entity.FederatedUserConsentClientScopeEntity.userConsent
protected

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