Package org.jwall.web.audit.io

Examples of org.jwall.web.audit.io.ModSecurityAuditReader


        if( fmt == AuditFormat.APACHE_ACCESS_LOG )
            reader = new AccessLogAuditReader( logFile, tail );

        if( fmt == AuditFormat.MOD_SECURITY_1_X_SERIAL_LOG )
            reader = new ModSecurityAuditReader( logFile, tail );

        if( fmt == AuditFormat.MOD_SECURITY_2_X_SERIAL_LOG )
            reader = new ModSecurity2AuditReader( logFile, tail );

        if( reader == null )
View Full Code Here


            if( format == AuditFormat.APACHE_ACCESS_LOG )
                r = new AccessLogAuditReader( auditFile, skip > 0 );

            if( format == AuditFormat.MOD_SECURITY_1_X_SERIAL_LOG )
                r = new ModSecurityAuditReader( auditFile, skip > 0 );

            if( format ==AuditFormat.MOD_SECURITY_2_X_SERIAL_LOG )
                r = new ModSecurity2AuditReader( auditFile, skip > 0 );

            if( format == AuditFormat.MOD_SECURITY_2_X_CONCURRENT_LOG ){
View Full Code Here

TOP

Related Classes of org.jwall.web.audit.io.ModSecurityAuditReader

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.