Package org.jwall.web.audit.io

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


        File logFile = new File( f );
        int fmt = AuditFormat.guessFormat( logFile );

        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 )
View Full Code Here


            AuditEventReader r = null;
            int format = AuditFormat.guessFormat( auditFile );

            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 )
View Full Code Here

TOP

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

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.