Package net.paoding.rose.web

Examples of net.paoding.rose.web.ParamValidator


        String[] validatorNames = SpringUtils.getBeanNames(context.getBeanFactory(),
                ParamValidator.class);
        ArrayList<ParamValidator> globalValidators = new ArrayList<ParamValidator>(
                validatorNames.length);
        for (String beanName : validatorNames) {
            ParamValidator validator = (ParamValidator) context.getBean(beanName);
            Class<?> userClass = ClassUtils.getUserClass(validator);
            if (userClass.isAnnotationPresent(Ignored.class)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Ignored context validator:" + validator);
                }
View Full Code Here

TOP

Related Classes of net.paoding.rose.web.ParamValidator

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.