in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/ProvisionAgreementImpl.java [69:83]
public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
if (this == o) {
return true;
}
if (!(o instanceof ProvisionAgreementImpl)) {
return false;
}
if (!super.deepEquals(o, exclusions)) {
return false;
}
ProvisionAgreementImpl that = (ProvisionAgreementImpl) o;
return Objects.equals(getDataProvider(), that.getDataProvider())
&& Objects.equals(getControlledStructureUsage(), that.getControlledStructureUsage())
&& Objects.equals(getDataSource(), that.getDataSource());
}