Package com.codeforces.graygoose.validation

Examples of com.codeforces.graygoose.validation.ResponseCodesValidator


    }

    public static void addRulePropertyValidators(ApplicationPage page, String ruleTypeName) {
        if (Rule.RuleType.RESPONSE_CODE_RULE_TYPE.toString().equals(ruleTypeName)) {
            page.addValidator("codes", new RequiredValidator());
            page.addValidator("codes", new ResponseCodesValidator());
        } else if (Rule.RuleType.SUBSTRING_RULE_TYPE.toString().equals(ruleTypeName)) {
            page.addValidator("substring", new RequiredValidator());
            page.addValidator("substring", new LengthValidator(1, 256));

            page.addValidator("substringMinCount", new RequiredValidator());
View Full Code Here

TOP

Related Classes of com.codeforces.graygoose.validation.ResponseCodesValidator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.