in api/src/main/java/org/apache/fineract/cn/identity/api/v1/events/ApplicationCallEndpointSetEvent.java [56:62]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ApplicationCallEndpointSetEvent that = (ApplicationCallEndpointSetEvent) o;
return Objects.equals(applicationIdentifier, that.applicationIdentifier) &&
Objects.equals(callEndpointSetIdentifier, that.callEndpointSetIdentifier);
}