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

artoria.data.validation.config.ValidateProperties Maven / Gradle / Ivy

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