117 if (
this == o)
return true;
118 if (o == null || getClass() != o.getClass())
return false;
119 if (!(o instanceof ClientScopeRoleMappingEntity))
return false;
121 ClientScopeRoleMappingEntity key = (ClientScopeRoleMappingEntity) o;
123 if (
clientScope != null ? !
clientScope.
getId().equals(key.clientScope != null ? key.clientScope.getId() : null) : key.clientScope != null)
return false;
124 if (
role != null ? !
role.
getId().equals(key.role != null ? key.role.getId() : null) : key.role != null)
return false;
String getId()
Definition: ClientScopeEntity.java:83
ClientScopeEntity clientScope
Definition: ClientScopeRoleMappingEntity.java:49
String getId()
Definition: RoleEntity.java:96
RoleEntity role
Definition: ClientScopeRoleMappingEntity.java:54