Package org.apache.stratos.status.monitor.core

Examples of org.apache.stratos.status.monitor.core.StatusMonitorConfigurationBuilder


            BundleContext bundleContext) throws StatusMonitorException {
        String configFile =
                CarbonUtils.getCarbonConfigDirPath() + File.separator +
                        StatusMonitorConstants.STATUS_MONITOR_CONFIG;
        try {
            statusMonitorConfiguration = new StatusMonitorConfigurationBuilder(configFile);
        } catch (Exception e) {
            String msg = "The Status Monitor Configuration file not found";
            log.error(msg, e);
            throw new StatusMonitorException (msg, e);
        }
View Full Code Here

TOP

Related Classes of org.apache.stratos.status.monitor.core.StatusMonitorConfigurationBuilder

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.