Package com.volantis.synergetics.reporting.config

Examples of com.volantis.synergetics.reporting.config.JibxReportingConfigParser


        // we either have 'null' or a URL. If we have null we know it has
        // been logged.
        ReportingConfig reportingConfig = null;
        if (is != null) {
            try {
                JibxReportingConfigParser parser =
                    new JibxReportingConfigParser();
                reportingConfig = parser.parse(is);
            } catch (RuntimeException re) {
                // this is a fatal error. Apps that rely on reporting cannot
                // continue if this occurs
                LOGGER.fatal("failed-to-parse-configuration-file", location, re);
                throw new ReportingException(
View Full Code Here

TOP

Related Classes of com.volantis.synergetics.reporting.config.JibxReportingConfigParser

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.