Package com.commongroundpublishing.rubylet.config

Examples of com.commongroundpublishing.rubylet.config.ServletConfigConfig


    }
   
    private final IConfig config;
   
    public RubyConfig(ServletConfig config) {
        this(new ChainedConfig(new ServletConfigConfig(config),
                               new ServletContextConfig(config.getServletContext())));
    }
View Full Code Here


    private javax.servlet.Servlet child;

    public void init(ServletConfig servletConfig) throws ServletException {
        this.servletConfig = servletConfig;
        final IConfig config =
                new ChainedConfig(new ServletConfigConfig(servletConfig),
                                  new ServletContextConfig(servletConfig.getServletContext()));
        factory = Util.getFactory(config, Util.RUBY_FACTORY);
        factory.reference(this);
        child = factory.makeServlet(servletConfig);
    }
View Full Code Here

    public void init(ServletConfig servletConfig) throws ServletException {
        this.servletConfig = servletConfig;

        final IConfig config =
                new ChainedConfig(new ServletConfigConfig(servletConfig),
                                  new ServletContextConfig(servletConfig.getServletContext()));
        factory = Util.getFactory(config, Util.RESTARTABLE_RUBY_FACTORY);
        factory.reference(this);
        childServlet.set(factory.makeServlet(servletConfig));
    }
View Full Code Here

TOP

Related Classes of com.commongroundpublishing.rubylet.config.ServletConfigConfig

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.