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

クラス

class  Key
 

公開メンバ関数

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

限定公開変数類

UserConsentEntity userConsent
 
String scopeId
 

詳解

著者
Marek Posolda

関数詳解

◆ equals()

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

◆ getScopeId()

String org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.getScopeId ( )
inline
67  {
68  return scopeId;
69  }
String scopeId
Definition: UserConsentClientScopeEntity.java:57

◆ getUserConsent()

UserConsentEntity org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.getUserConsent ( )
inline
59  {
60  return userConsent;
61  }
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:53

◆ hashCode()

int org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.hashCode ( )
inline
88  {
89  UserConsentClientScopeEntity.Key myKey = new UserConsentClientScopeEntity.Key(this.userConsent, this.scopeId);
90  return myKey.hashCode();
91  }
String scopeId
Definition: UserConsentClientScopeEntity.java:57
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:53

◆ setScopeId()

void org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.setScopeId ( String  scopeId)
inline
71  {
72  this.scopeId = scopeId;
73  }
String scopeId
Definition: UserConsentClientScopeEntity.java:57

◆ setUserConsent()

void org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.setUserConsent ( UserConsentEntity  userConsent)
inline
63  {
64  this.userConsent = userConsent;
65  }
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:53

メンバ詳解

◆ scopeId

String org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.scopeId
protected

◆ userConsent

UserConsentEntity org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.userConsent
protected

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