Package org.apache.webbeans.cditest.owb

Examples of org.apache.webbeans.cditest.owb.MockServletContext


    private MockHttpSession session = null;
    private MockHttpServletRequest request;

    public void bootContainer() throws Exception
    {
        this.servletContext = new MockServletContext();
        this.session = new MockHttpSession();
        this.request = new MockHttpServletRequest(this.session);
        this.lifecycle = new HybridStandaloneLifeCycle(this.servletContext, this.session, this.request);
        this.lifecycle.startApplication(this.servletContext);
    }
View Full Code Here

TOP

Related Classes of org.apache.webbeans.cditest.owb.MockServletContext

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.