Package org.apache.wink.spring

Examples of org.apache.wink.spring.Registrar


     */
    public Object postProcessAfterInitialization(Object bean, String beanName)
        throws BeansException {
        if (bean instanceof Registrar) {
            // save registrars to register them at the end of context loading
            Registrar registrar = (Registrar)bean;
            registrars.add(registrar);
        }
        return bean;
    }
View Full Code Here

TOP

Related Classes of org.apache.wink.spring.Registrar

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.