
artoria.data.validation.config.ValidateProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artoria-extend Show documentation
Show all versions of artoria-extend Show documentation
Artoria is a java technology framework based on the facade pattern.
The newest version!
package artoria.data.validation.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.HashMap;
import java.util.Map;
/**
* The validate properties.
* @author Kahle
*/
@ConfigurationProperties("artoria.validate")
public class ValidateProperties {
/**
* Regex validator configuration, and key is name and value is regex.
*/
private Map regexValidators = new HashMap();
public Map getRegexValidators() {
return regexValidators;
}
public void setRegexValidators(Map regexValidators) {
this.regexValidators = regexValidators;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy