All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cdm.product.asset.validation.datarule.TrancheAttachmentPoint Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.89
Show newest version
package cdm.product.asset.validation.datarule;

import cdm.product.asset.Tranche;
import com.google.inject.ImplementedBy;
import com.rosetta.model.lib.annotations.RosettaDataRule;
import com.rosetta.model.lib.expression.CardinalityOperator;
import com.rosetta.model.lib.expression.ComparisonResult;
import com.rosetta.model.lib.mapper.MapperS;
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 static com.rosetta.model.lib.expression.ExpressionOperators.*;

/**
 * @version 6.0.0-dev.82
 */
@RosettaDataRule("TrancheAttachmentPoint")
@ImplementedBy(TrancheAttachmentPoint.Default.class)
public interface TrancheAttachmentPoint extends Validator {
	
	String NAME = "TrancheAttachmentPoint";
	String DEFINITION = "attachmentPoint >= 0.0 and attachmentPoint <= 1.0";
	
	ValidationResult validate(RosettaPath path, Tranche tranche);
	
	class Default implements TrancheAttachmentPoint {
	
		@Override
		public ValidationResult validate(RosettaPath path, Tranche tranche) {
			ComparisonResult result = executeDataRule(tranche);
			if (result.get()) {
				return ValidationResult.success(NAME, ValidationResult.ValidationType.DATA_RULE, "Tranche", path, DEFINITION);
			}
			
			String failureMessage = result.getError();
			if (failureMessage == null || failureMessage.contains("Null") || failureMessage == "") {
				failureMessage = "Condition has failed.";
			}
			return ValidationResult.failure(NAME, ValidationType.DATA_RULE, "Tranche", path, DEFINITION, failureMessage);
		}
		
		private ComparisonResult executeDataRule(Tranche tranche) {
			try {
				return greaterThanEquals(MapperS.of(tranche).map("getAttachmentPoint", _tranche -> _tranche.getAttachmentPoint()), MapperS.of(new BigDecimal("0.0")), CardinalityOperator.All).and(lessThanEquals(MapperS.of(tranche).map("getAttachmentPoint", _tranche -> _tranche.getAttachmentPoint()), MapperS.of(new BigDecimal("1.0")), CardinalityOperator.All));
			}
			catch (Exception ex) {
				return ComparisonResult.failure(ex.getMessage());
			}
		}
	}
	
	@SuppressWarnings("unused")
	class NoOp implements TrancheAttachmentPoint {
	
		@Override
		public ValidationResult validate(RosettaPath path, Tranche tranche) {
			return ValidationResult.success(NAME, ValidationResult.ValidationType.DATA_RULE, "Tranche", path, DEFINITION);
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy