Package org.impalaframework.web.spring.integration

Examples of org.impalaframework.web.spring.integration.InternalFrameworkIntegrationServletFactoryBean


        assertEquals(1, s.size());
       
        Map<String,? extends ServletFactoryBean> beans = context.getBeansOfType(InternalFrameworkIntegrationServletFactoryBean.class);
        assertEquals(1, beans.size());
       
        InternalFrameworkIntegrationServletFactoryBean firstValue = (InternalFrameworkIntegrationServletFactoryBean) ObjectMapUtils.getFirstValue(beans);
        assertEquals("delegator", firstValue.getServletName());

        beans = context.getBeansOfType(ExtendedServletFactoryBean.class);
        assertEquals(1, beans.size());
       
        ExtendedServletFactoryBean extendedFactoryBean = (ExtendedServletFactoryBean) ObjectMapUtils.getFirstValue(beans);
View Full Code Here

TOP

Related Classes of org.impalaframework.web.spring.integration.InternalFrameworkIntegrationServletFactoryBean

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.