cdm.observable.event.validation.exists.TriggerEventOnlyExistsValidator Maven / Gradle / Ivy
package cdm.observable.event.validation.exists;
import cdm.base.datetime.AveragingSchedule;
import cdm.base.datetime.DateList;
import cdm.observable.event.FeaturePayment;
import cdm.observable.event.Trigger;
import cdm.observable.event.TriggerEvent;
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.List;
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 TriggerEventOnlyExistsValidator 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("schedule", ExistenceChecker.isSet((List extends AveragingSchedule>) o.getSchedule()))
.put("triggerDates", ExistenceChecker.isSet((DateList) o.getTriggerDates()))
.put("trigger", ExistenceChecker.isSet((Trigger) o.getTrigger()))
.put("featurePayment", ExistenceChecker.isSet((FeaturePayment) o.getFeaturePayment()))
.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("TriggerEvent", ValidationType.ONLY_EXISTS, "TriggerEvent", path, "");
}
return failure("TriggerEvent", ValidationType.ONLY_EXISTS, "TriggerEvent", path, "",
String.format("[%s] should only be set. Set fields: %s", fields, setFields));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy