Package org.apache.shale.clay.config

Examples of org.apache.shale.clay.config.ClayXmlParser


     * establishes a Map collection to hold the resource
     * {@link org.apache.shale.clay.config.beans.ComponentConfigBean$WatchDog}'s.</p>
     */
    protected void loadConfigFiles() {

        parser = new ClayXmlParser();
        parser.setConfig(this);

        // a comma delimited value list of config files
        String param = context.getInitParameter(Globals.CLAY_FULLXML_CONFIG_FILES);

View Full Code Here


     * descriptor.  The default configuration file "META-INF/view-config.xml" is always
     * loaded from the shale-clay java archive.</p>
     */
    protected void loadConfigFiles() {

        parser = new ClayXmlParser();
        parser.setConfig(this);

        // grab the default config file
        StringBuffer configFiles = new StringBuffer(
                Globals.DEFAULT_CLAY_CONFIG_FILE);
View Full Code Here

TOP

Related Classes of org.apache.shale.clay.config.ClayXmlParser

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.