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

公開メンバ関数

 Key ()
 
 Key (UserConsentEntity userConsent, String scopeId)
 
UserConsentEntity getUserConsent ()
 
String getScopeId ()
 
boolean equals (Object o)
 
int hashCode ()
 

限定公開変数類

UserConsentEntity userConsent
 
String scopeId
 

詳解

構築子と解体子

◆ Key() [1/2]

org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.Key.Key ( )
inline
99  {
100  }

◆ Key() [2/2]

org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.Key.Key ( UserConsentEntity  userConsent,
String  scopeId 
)
inline
102  {
103  this.userConsent = userConsent;
104  this.scopeId = scopeId;
105  }
String scopeId
Definition: UserConsentClientScopeEntity.java:97
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:95

関数詳解

◆ equals()

boolean org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.Key.equals ( Object  o)
inline
116  {
117  if (this == o) return true;
118  if (o == null || getClass() != o.getClass()) return false;
119 
120  UserConsentClientScopeEntity.Key key = (UserConsentClientScopeEntity.Key) o;
121 
122  if (userConsent != null ? !userConsent.getId().equals(key.userConsent != null ? key.userConsent.getId() : null) : key.userConsent != null) return false;
123  if (scopeId != null ? !scopeId.equals(key.scopeId) : key.scopeId != null) return false;
124 
125  return true;
126  }
String getId()
Definition: UserConsentEntity.java:84
String scopeId
Definition: UserConsentClientScopeEntity.java:97
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:95

◆ getScopeId()

String org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.Key.getScopeId ( )
inline
111  {
112  return scopeId;
113  }
String scopeId
Definition: UserConsentClientScopeEntity.java:97

◆ getUserConsent()

UserConsentEntity org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.Key.getUserConsent ( )
inline
107  {
108  return userConsent;
109  }
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:95

◆ hashCode()

int org.keycloak.models.jpa.entities.UserConsentClientScopeEntity.Key.hashCode ( )
inline
129  {
130  int result = userConsent != null ? userConsent.getId().hashCode() : 0;
131  result = 31 * result + (scopeId != null ? scopeId.hashCode() : 0);
132  return result;
133  }
String getId()
Definition: UserConsentEntity.java:84
String scopeId
Definition: UserConsentClientScopeEntity.java:97
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:95

メンバ詳解

◆ scopeId

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

◆ userConsent

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

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