Examples of ArchivaAuditLogsConstraint


Examples of org.apache.maven.archiva.database.constraints.ArchivaAuditLogsConstraint

        }

        range[0] = ( page - 1 ) * rowCount;
        range[1] = ( page * rowCount ) + 1;
       
        ArchivaAuditLogsConstraint constraint = null;
        if ( !repository.equals( ALL_REPOSITORIES ) )
        {
            constraint =
                new ArchivaAuditLogsConstraint( range, artifact, repository, AuditEvent.UPLOAD_FILE, startDateInDF, endDateInDF );
        }
        else
        {
            constraint =
                new ArchivaAuditLogsConstraint( range, artifact, null, AuditEvent.UPLOAD_FILE, startDateInDF, endDateInDF );
        }

        try
        {
            auditLogs = auditLogsDao.queryAuditLogs( constraint );           
View Full Code Here

Examples of org.apache.maven.archiva.database.constraints.ArchivaAuditLogsConstraint

        }

        range[0] = ( page - 1 ) * rowCount;
        range[1] = ( page * rowCount ) + 1;
       
        ArchivaAuditLogsConstraint constraint = null;
        if ( !repository.equals( ALL_REPOSITORIES ) )
        {
            constraint =
                new ArchivaAuditLogsConstraint( range, artifact, repository, AuditEvent.UPLOAD_FILE, startDateInDF, endDateInDF );
        }
        else
        {
            constraint =
                new ArchivaAuditLogsConstraint( range, artifact, null, AuditEvent.UPLOAD_FILE, startDateInDF, endDateInDF );
        }

        try
        {
            auditLogs = filterLogs( auditLogsDao.queryAuditLogs( constraint ) );
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.