117 if (
this == o)
return true;
118 if (o == null || getClass() != o.getClass())
return false;
120 UserConsentClientScopeEntity.Key key = (UserConsentClientScopeEntity.Key) o;
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;
String getId()
Definition: UserConsentEntity.java:84
String scopeId
Definition: UserConsentClientScopeEntity.java:97
UserConsentEntity userConsent
Definition: UserConsentClientScopeEntity.java:95