com.rosetta.jptlegalagreement.model.validation.AccountValidator Maven / Gradle / Ivy
package com.rosetta.jptlegalagreement.model.validation;
import com.google.common.collect.Lists;
import com.rosetta.jptlegalagreement.model.Account;
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 com.rosetta.model.metafields.FieldWithMetaString;
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 AccountValidator implements Validator {
private List getComparisonResults(Account o) {
return Lists.newArrayList(
checkCardinality("accountNumber", (FieldWithMetaString) o.getAccountNumber() != null ? 1 : 0, 1, 1),
checkCardinality("accountName", (FieldWithMetaString) o.getAccountName() != null ? 1 : 0, 0, 1)
);
}
@Override
public ValidationResult validate(RosettaPath path, Account o) {
String error = getComparisonResults(o)
.stream()
.filter(res -> !res.get())
.map(res -> res.getError())
.collect(joining("; "));
if (!isNullOrEmpty(error)) {
return failure("Account", ValidationType.CARDINALITY, "Account", path, "", error);
}
return success("Account", ValidationType.CARDINALITY, "Account", path, "");
}
@Override
public List> getValidationResults(RosettaPath path, Account o) {
return getComparisonResults(o)
.stream()
.map(res -> {
if (!isNullOrEmpty(res.getError())) {
return failure("Account", ValidationType.CARDINALITY, "Account", path, "", res.getError());
}
return success("Account", ValidationType.CARDINALITY, "Account", path, "");
})
.collect(toList());
}
}