in service/src/main/java/org/apache/fineract/cn/interoperation/service/internal/repository/InteropIdentifierEntity.java [158:168]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
InteropIdentifierEntity that = (InteropIdentifierEntity) o;
if (!customerAccountIdentifier.equals(that.customerAccountIdentifier)) return false;
if (type != that.type) return false;
if (!value.equals(that.value)) return false;
return subValueOrType != null ? subValueOrType.equals(that.subValueOrType) : that.subValueOrType == null;
}