cdm.product.collateral.validation.IndependentAmountValidator Maven / Gradle / Ivy
package cdm.product.collateral.validation;
import cdm.base.staticdata.party.metafields.ReferenceWithMetaAccount;
import cdm.base.staticdata.party.metafields.ReferenceWithMetaParty;
import cdm.product.collateral.IndependentAmount;
import cdm.product.common.settlement.PaymentDetail;
import com.google.common.collect.Lists;
import com.rosetta.model.lib.expression.ComparisonResult;
import com.rosetta.model.lib.path.RosettaPath;
import com.rosetta.model.lib.validation.ValidationResult;
import com.rosetta.model.lib.validation.ValidationResult.ValidationType;
import com.rosetta.model.lib.validation.Validator;
import java.util.List;
import static com.google.common.base.Strings.isNullOrEmpty;
import static com.rosetta.model.lib.expression.ExpressionOperators.checkCardinality;
import static com.rosetta.model.lib.validation.ValidationResult.failure;
import static com.rosetta.model.lib.validation.ValidationResult.success;
import static java.util.stream.Collectors.joining;
import static java.util.stream.Collectors.toList;
public class IndependentAmountValidator implements Validator {
private List getComparisonResults(IndependentAmount o) {
return Lists.newArrayList(
checkCardinality("payerPartyReference", (ReferenceWithMetaParty) o.getPayerPartyReference() != null ? 1 : 0, 1, 1),
checkCardinality("payerAccountReference", (ReferenceWithMetaAccount) o.getPayerAccountReference() != null ? 1 : 0, 0, 1),
checkCardinality("receiverPartyReference", (ReferenceWithMetaParty) o.getReceiverPartyReference() != null ? 1 : 0, 1, 1),
checkCardinality("receiverAccountReference", (ReferenceWithMetaAccount) o.getReceiverAccountReference() != null ? 1 : 0, 0, 1),
checkCardinality("paymentDetail", (List extends PaymentDetail>) o.getPaymentDetail() == null ? 0 : ((List extends PaymentDetail>) o.getPaymentDetail()).size(), 1, 0)
);
}
@Override
public ValidationResult validate(RosettaPath path, IndependentAmount o) {
String error = getComparisonResults(o)
.stream()
.filter(res -> !res.get())
.map(res -> res.getError())
.collect(joining("; "));
if (!isNullOrEmpty(error)) {
return failure("IndependentAmount", ValidationType.CARDINALITY, "IndependentAmount", path, "", error);
}
return success("IndependentAmount", ValidationType.CARDINALITY, "IndependentAmount", path, "");
}
@Override
public List> getValidationResults(RosettaPath path, IndependentAmount o) {
return getComparisonResults(o)
.stream()
.map(res -> {
if (!isNullOrEmpty(res.getError())) {
return failure("IndependentAmount", ValidationType.CARDINALITY, "IndependentAmount", path, "", res.getError());
}
return success("IndependentAmount", ValidationType.CARDINALITY, "IndependentAmount", path, "");
})
.collect(toList());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy