Package org.apache.webbeans.context

Examples of org.apache.webbeans.context.RequestContext


        if (supportsConversation()) { // OWB-595
            cleanupConversation();
        }

        //Get context
        RequestContext context = getRequestContext();

        //Destroy context
        if (context != null) {
            context.destroy();
        }

        // clean up the EL caches after each request
        ELContextStore elStore = ELContextStore.getInstance(false);
        if (elStore != null) {
View Full Code Here

TOP

Related Classes of org.apache.webbeans.context.RequestContext

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.