Package org.impalaframework.web.servlet.invocation

Examples of org.impalaframework.web.servlet.invocation.ModuleInvokerContributor


        beanFactory = createMock(ListableBeanFactory.class);
        builder.setBeanFactory(beanFactory);
        builder.setModuleDefinition(new SimpleModuleDefinition("mymodule"));
        servletContext = createMock(ServletContext.class);
        builder.setServletContext(servletContext);
        moduleInvokerContributor = new ModuleInvokerContributor();
        moduleInvokerContributor.setSuffix("exe");

        expect(beanFactory.getBeansOfType(ServletContextListenerFactoryBean.class)).andReturn(null);
    }
View Full Code Here

TOP

Related Classes of org.impalaframework.web.servlet.invocation.ModuleInvokerContributor

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.