Examples of ChainedConfig


Examples of com.commongroundpublishing.rubylet.config.ChainedConfig

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

Examples of com.commongroundpublishing.rubylet.config.ChainedConfig

        this(new ChainedConfig(new ServletConfigConfig(config),
                               new ServletContextConfig(config.getServletContext())));
    }
   
    public RubyConfig(FilterConfig config) {
        this(new ChainedConfig(new FilterConfigConfig(config),
                               new ServletContextConfig(config.getServletContext())));
    }
View Full Code Here

Examples of com.commongroundpublishing.rubylet.config.ChainedConfig

   
    public void contextInitialized(ServletContextEvent sce) {
        final IConfig scConfig = new ServletContextConfig(sce.getServletContext());
        final String prefix = "RubyListener." + getClass().getSimpleName() + ".";
        listenerConfig = new PrefixedConfig(prefix, scConfig);
        final IConfig config = new ChainedConfig(listenerConfig, scConfig);

        this.sce = sce;
        factory = Util.getFactory(config, Util.RESTARTABLE_RUBY_FACTORY);
        factory.reference(this);
        child = factory.makeListener(listenerConfig);
View Full Code Here

Examples of com.commongroundpublishing.rubylet.config.ChainedConfig

    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

Examples of com.commongroundpublishing.rubylet.config.ChainedConfig

    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

Examples of org.jboss.as.model.test.FailedOperationTransformationConfig.ChainedConfig

                new FailedOperationTransformationConfig.RejectExpressionsConfig("socket-binding", "enabled", "enable-lookups",
                        "proxy-name", "proxy-port", "max-post-size", "max-save-post-size", "redirect-port",
                        "max-connections", "executor"))
                // Connector https
        .addFailedAttribute(subsystem.append(PathElement.pathElement("connector", "https"), PathElement.pathElement("configuration", "ssl")),
                new ChainedConfig(Arrays.asList(new AttributesPathAddressConfig<?>[]{
                        new FailedOperationTransformationConfig.RejectExpressionsConfig("certificate-key-file", "ca-certificate-file", "key-alias",
                            "password", "cipher-suite", "protocol", "verify-client", "verify-depth", "certificate-file", "ca-revocation-url",
                            "ca-certificate-password", "keystore-type", "truststore-type", "session-cache-size", "session-timeout", "ssl-protocol"),
                            new FailedOperationTransformationConfig.NewAttributesConfig("ssl-protocol")
                    }),
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.