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

com.dream.template.validate.PatternValidator Maven / Gradle / Ivy

package com.dream.template.validate;


import java.util.Map;
import java.util.regex.Pattern;

public class PatternValidator implements Validator {
    @Override
    public String validate(String value, Map paramMap) {
        if (value != null) {
            String regex = (String) paramMap.get("regex");
            if (!Pattern.compile(regex).matcher(value).matches()) {
                return (String) paramMap.get("msg");
            }
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy