in api/src/main/java/org/apache/fineract/cn/identity/api/v1/domain/Permission.java [65:71]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Permission that = (Permission) o;
return Objects.equals(permittableEndpointGroupIdentifier, that.permittableEndpointGroupIdentifier) &&
Objects.equals(allowedOperations, that.allowedOperations);
}