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.ElectiveAmountElectionValidator Maven / Gradle / Ivy
package com.rosetta.jptlegalagreement.model.validation;
import com.google.common.collect.Lists;
import com.rosetta.jptlegalagreement.model.ElectiveAmountElection;
import com.rosetta.jptlegalagreement.model.Money;
import com.rosetta.jptlegalagreement.model.metafields.ReferenceWithMetaParty;
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.math.BigDecimal;
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 ElectiveAmountElectionValidator implements Validator {
private List getComparisonResults(ElectiveAmountElection o) {
return Lists.newArrayList(
checkCardinality("party", (ReferenceWithMetaParty) o.getParty() != null ? 1 : 0, 1, 1),
checkCardinality("amount", (Money) o.getAmount() != null ? 1 : 0, 0, 1),
checkCardinality("customElection", (String) o.getCustomElection() != null ? 1 : 0, 0, 1),
checkCardinality("noAmount", (BigDecimal) o.getNoAmount() != null ? 1 : 0, 0, 1)
);
}
@Override
public ValidationResult validate(RosettaPath path, ElectiveAmountElection o) {
String error = getComparisonResults(o)
.stream()
.filter(res -> !res.get())
.map(res -> res.getError())
.collect(joining("; "));
if (!isNullOrEmpty(error)) {
return failure("ElectiveAmountElection", ValidationType.CARDINALITY, "ElectiveAmountElection", path, "", error);
}
return success("ElectiveAmountElection", ValidationType.CARDINALITY, "ElectiveAmountElection", path, "");
}
@Override
public List> getValidationResults(RosettaPath path, ElectiveAmountElection o) {
return getComparisonResults(o)
.stream()
.map(res -> {
if (!isNullOrEmpty(res.getError())) {
return failure("ElectiveAmountElection", ValidationType.CARDINALITY, "ElectiveAmountElection", path, "", res.getError());
}
return success("ElectiveAmountElection", ValidationType.CARDINALITY, "ElectiveAmountElection", path, "");
})
.collect(toList());
}
}