77 if (
this == o)
return true;
78 if (o == null)
return false;
79 if (!(o instanceof UserConsentClientScopeEntity))
return false;
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);
String scopeId
Definition: UserConsentClientScopeEntity.java:57
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:53