Package org.rhq.plugins.apache.parser

Examples of org.rhq.plugins.apache.parser.ApacheParser


        }
    }

    public static ApacheDirectiveTree parseFullConfiguration(String path, String serverRoot) {
        ApacheDirectiveTree tree = new ApacheDirectiveTree();
        ApacheParser parser = new ApacheParserImpl(tree, serverRoot, null);
        ApacheConfigReader.buildTree(path, parser);
        return tree;
    }
View Full Code Here


        RuntimeApacheConfiguration.NodeInspector insp =
            RuntimeApacheConfiguration.getNodeInspector(processInfo, binaryInfo, moduleNames,
                suppressUnknownModuleWarnings, keepConditional);

        ApacheDirectiveTree tree = new ApacheDirectiveTree();
        ApacheParser parser = new ApacheParserImpl(tree, defaultServerRoot, insp);
        ApacheConfigReader.buildTree(path, parser);
        return tree;
    }
View Full Code Here

TOP

Related Classes of org.rhq.plugins.apache.parser.ApacheParser

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.