in api/src/main/java/org/apache/fineract/cn/anubis/api/v1/domain/PermittableEndpoint.java [100:108]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
PermittableEndpoint that = (PermittableEndpoint) o;
return acceptTokenIntendedForForeignApplication == that.acceptTokenIntendedForForeignApplication &&
Objects.equals(path, that.path) &&
Objects.equals(method, that.method) &&
Objects.equals(groupId, that.groupId);
}