Package com.ponysdk.spring.service

Examples of com.ponysdk.spring.service.SpringApplicationLoader


        // set default value
        if (httpServlet == null) httpServlet = new SpringHttpServlet();
        if (bootstrapServlet == null) bootstrapServlet = new BootstrapServlet();
        if (httpSessionListener == null && servletContextListener == null) {
            final SpringApplicationLoader applicationLoader = new SpringApplicationLoader();
            applicationLoader.setApplicationID(applicationID);
            applicationLoader.setApplicationName(applicationName);
            applicationLoader.setApplicationDescription(applicationDescription);
            httpSessionListener = applicationLoader;
            servletContextListener = applicationLoader;
        }

        if (servletConextFilter == null) servletConextFilter = new ServletContextFilter();
View Full Code Here

TOP

Related Classes of com.ponysdk.spring.service.SpringApplicationLoader

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.