Package com.volantis.mcs.runtime.configuration.xml

Examples of com.volantis.mcs.runtime.configuration.xml.XMLServletConfigurationBuilder


     * @param cc the ConfigContext for this Config
     */
    public Config(ConfigContext cc) throws ConfigurationException {

        // Parse the xml to get the root config object.
        XMLServletConfigurationBuilder configBuilder =
                new XMLServletConfigurationBuilder(cc);
       
        // Add the digester parsing rules for the MPS plugin.
        // @todo make this part of the internal API and move to MPS
        configBuilder.addApplicationPluginRuleSet(new MpsPluginRuleSet());
        mariner = configBuilder.buildConfiguration();

        // Create references to all the simple sub-objects
        AgentConfiguration agent = mariner.getAgent();
        AppServerConfiguration appServer = mariner.getAppServer();
        DebugConfiguration debug = mariner.getDebug();
View Full Code Here

TOP

Related Classes of com.volantis.mcs.runtime.configuration.xml.XMLServletConfigurationBuilder

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.