Package org.springmodules.validation.bean.rule

Examples of org.springmodules.validation.bean.rule.PropertyValidationRule


     * @param propertyName The name of the property associated with the added rule.
     * @param propertyRule The rule that should be applied on the value of the given property.
     * @see #addPropertyRule(String, org.springmodules.validation.util.condition.Condition, String)
     */
    public void addPropertyRule(String propertyName, ValidationRule propertyRule) {
        addPropertyGlobalRule(propertyName, new PropertyValidationRule(propertyName, propertyRule));
    }
View Full Code Here

TOP

Related Classes of org.springmodules.validation.bean.rule.PropertyValidationRule

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.