org.entur.netex.validation.configuration.ValidationConfigLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netex-validator-java Show documentation
Show all versions of netex-validator-java Show documentation
Library for validating NeTEx datasets against the Nordic NeTEx Profile.
package org.entur.netex.validation.configuration;
import java.util.Map;
/**
* Load the validation rules configuration.
*/
public interface ValidationConfigLoader {
/**
* Return a mapping of rule configuration by rule code.
* @return a mapping of rule configuration by rule code.
*/
Map getValidationRuleConfigs();
/**
* Return a validation rule configuration for a given rule code.
*/
ValidationRuleConfig getValidationRuleConfig(String ruleCode);
}