All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.daedafusion.security.admin.providers.AuditAdminProvider Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.daedafusion.security.admin.providers;

import com.daedafusion.sf.Provider;
import com.daedafusion.security.audit.AuditEvent;

import java.util.List;

/**
 * Created by mphilpot on 8/12/14.
 */
public interface AuditAdminProvider extends Provider
{
    List getEvents(long after, long before, int limit);
    List getEventsByUsername(long after, long before, String username, int limit);
    List getEventsBySource(long after, long before, String source, int limit);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy