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

cdm.observable.event.validation.exists.RestructuringOnlyExistsValidator Maven / Gradle / Ivy

There is a newer version: 6.0.0-dev.89
Show newest version
package cdm.observable.event.validation.exists;

import cdm.observable.event.Restructuring;
import cdm.observable.event.metafields.FieldWithMetaRestructuringEnum;
import com.google.common.collect.ImmutableMap;
import com.rosetta.model.lib.path.RosettaPath;
import com.rosetta.model.lib.validation.ExistenceChecker;
import com.rosetta.model.lib.validation.ValidationResult;
import com.rosetta.model.lib.validation.ValidationResult.ValidationType;
import com.rosetta.model.lib.validation.ValidatorWithArg;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;

import static com.rosetta.model.lib.validation.ValidationResult.failure;
import static com.rosetta.model.lib.validation.ValidationResult.success;

public class RestructuringOnlyExistsValidator implements ValidatorWithArg> {

	/* Casting is required to ensure types are output to ensure recompilation in Rosetta */
	@Override
	public  ValidationResult validate(RosettaPath path, T2 o, Set fields) {
		Map fieldExistenceMap = ImmutableMap.builder()
				.put("applicable", ExistenceChecker.isSet((Boolean) o.getApplicable()))
				.put("restructuringType", ExistenceChecker.isSet((FieldWithMetaRestructuringEnum) o.getRestructuringType()))
				.put("multipleHolderObligation", ExistenceChecker.isSet((Boolean) o.getMultipleHolderObligation()))
				.put("multipleCreditEventNotices", ExistenceChecker.isSet((Boolean) o.getMultipleCreditEventNotices()))
				.build();
		
		// Find the fields that are set
		Set setFields = fieldExistenceMap.entrySet().stream()
				.filter(Map.Entry::getValue)
				.map(Map.Entry::getKey)
				.collect(Collectors.toSet());
		
		if (setFields.equals(fields)) {
			return success("Restructuring", ValidationType.ONLY_EXISTS, "Restructuring", path, "");
		}
		return failure("Restructuring", ValidationType.ONLY_EXISTS, "Restructuring", path, "",
				String.format("[%s] should only be set.  Set fields: %s", fields, setFields));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy