Package org.hdiv.listener

Examples of org.hdiv.listener.InitListener


    // Initialize config
    this.config = (HDIVConfig) this.applicationContext.getBean(HDIVConfig.class);
    // Configure for testing
    this.postCreateHdivConfig(this.config);

    InitListener initListener = new InitListener();
    // Initialize ServletContext
    ServletContextEvent servletContextEvent = new ServletContextEvent(servletContext);
    initListener.contextInitialized(servletContextEvent);
    // Initialize HttpSession
    HttpSessionEvent httpSessionEvent = new HttpSessionEvent(httpSession);
    initListener.sessionCreated(httpSessionEvent);

    // Init Request scoped data
    RequestInitializer requestInitializer = this.applicationContext.getBean(RequestInitializer.class);
    requestInitializer.initRequest(request, response);
    DataComposerFactory dataComposerFactory = (DataComposerFactory) this.applicationContext
View Full Code Here

TOP

Related Classes of org.hdiv.listener.InitListener

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.