Package com.crashnote.servlet.config

Examples of com.crashnote.servlet.config.ServletConfig


    // INTERFACE ==================================================================================

    public void init(final FilterConfig filterConfig) throws ServletException {

        // at first, parse filter configuration
        final ServletConfig config = getConfig(filterConfig);

        // if the configuration enables the filter...
        if (config.isEnabled()) {

            // ... based on config, create the central reporter service
            reporter = config.getReporter();
            reporter.start();

            // ... finally install the appender(s)
            connector = new AutoLogConnector(config, reporter);
            connector.start();
View Full Code Here

TOP

Related Classes of com.crashnote.servlet.config.ServletConfig

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.