All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.rosetta.jptlegalagreement.model.validation.CustodyArrangementsValidator Maven / Gradle / Ivy
package com.rosetta.jptlegalagreement.model.validation;
import com.google.common.collect.Lists;
import com.rosetta.jptlegalagreement.model.CustodianEvent;
import com.rosetta.jptlegalagreement.model.CustodyArrangements;
import com.rosetta.jptlegalagreement.model.CustodyArrangementsElection;
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 CustodyArrangementsValidator implements Validator {
private List getComparisonResults(CustodyArrangements o) {
return Lists.newArrayList(
checkCardinality("partyElection", (List extends CustodyArrangementsElection>) o.getPartyElection() == null ? 0 : ((List extends CustodyArrangementsElection>) o.getPartyElection()).size(), 2, 2),
checkCardinality("custodianEvent", (CustodianEvent) o.getCustodianEvent() != null ? 1 : 0, 1, 1),
checkCardinality("isCreditSupportDocument", (Boolean) o.getIsCreditSupportDocument() != null ? 1 : 0, 1, 1),
checkCardinality("hasControlAgreementLanguage", (Boolean) o.getHasControlAgreementLanguage() != null ? 1 : 0, 1, 1),
checkCardinality("otherProvisions", (String) o.getOtherProvisions() != null ? 1 : 0, 0, 1)
);
}
@Override
public ValidationResult validate(RosettaPath path, CustodyArrangements o) {
String error = getComparisonResults(o)
.stream()
.filter(res -> !res.get())
.map(res -> res.getError())
.collect(joining("; "));
if (!isNullOrEmpty(error)) {
return failure("CustodyArrangements", ValidationType.CARDINALITY, "CustodyArrangements", path, "", error);
}
return success("CustodyArrangements", ValidationType.CARDINALITY, "CustodyArrangements", path, "");
}
@Override
public List> getValidationResults(RosettaPath path, CustodyArrangements o) {
return getComparisonResults(o)
.stream()
.map(res -> {
if (!isNullOrEmpty(res.getError())) {
return failure("CustodyArrangements", ValidationType.CARDINALITY, "CustodyArrangements", path, "", res.getError());
}
return success("CustodyArrangements", ValidationType.CARDINALITY, "CustodyArrangements", path, "");
})
.collect(toList());
}
}