cdm.legaldocumentation.common.validation.AgreementNameValidator Maven / Gradle / Ivy
package cdm.legaldocumentation.common.validation;
import cdm.legaldocumentation.common.AgreementName;
import cdm.legaldocumentation.common.LegalAgreementTypeEnum;
import cdm.legaldocumentation.master.metafields.FieldWithMetaMasterAgreementTypeEnum;
import cdm.legaldocumentation.master.metafields.FieldWithMetaMasterConfirmationAnnexTypeEnum;
import cdm.legaldocumentation.master.metafields.FieldWithMetaMasterConfirmationTypeEnum;
import cdm.product.collateral.CollateralMarginTypeEnum;
import cdm.product.collateral.metafields.FieldWithMetaCreditSupportAgreementTypeEnum;
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 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;
public class AgreementNameValidator implements Validator {
@Override
public ValidationResult validate(RosettaPath path, AgreementName o) {
/* Casting is required to ensure types are output to ensure recompilation in Rosetta */
String error =
Lists.newArrayList(
checkCardinality("agreementType", (LegalAgreementTypeEnum) o.getAgreementType() != null ? 1 : 0, 1, 1),
checkCardinality("creditSupportAgreementType", (FieldWithMetaCreditSupportAgreementTypeEnum) o.getCreditSupportAgreementType() != null ? 1 : 0, 0, 1),
checkCardinality("creditSupportAgreementMarginType", (CollateralMarginTypeEnum) o.getCreditSupportAgreementMarginType() != null ? 1 : 0, 0, 1),
checkCardinality("masterAgreementType", (FieldWithMetaMasterAgreementTypeEnum) o.getMasterAgreementType() != null ? 1 : 0, 0, 1),
checkCardinality("masterConfirmationType", (FieldWithMetaMasterConfirmationTypeEnum) o.getMasterConfirmationType() != null ? 1 : 0, 0, 1),
checkCardinality("masterConfirmationAnnexType", (FieldWithMetaMasterConfirmationAnnexTypeEnum) o.getMasterConfirmationAnnexType() != null ? 1 : 0, 0, 1),
checkCardinality("otherAgreement", (String) o.getOtherAgreement() != null ? 1 : 0, 0, 1)
).stream().filter(res -> !res.get()).map(res -> res.getError()).collect(joining("; "));
if (!isNullOrEmpty(error)) {
return failure("AgreementName", ValidationType.CARDINALITY, "AgreementName", path, "", error);
}
return success("AgreementName", ValidationType.CARDINALITY, "AgreementName", path, "");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy