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

com.daedafusion.security.admin.AuditAdmin Maven / Gradle / Ivy

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

import com.daedafusion.security.audit.AuditEvent;
import com.daedafusion.security.authentication.Subject;
import com.daedafusion.security.exceptions.UnauthorizedException;

import java.util.List;

/**
 * Created by mphilpot on 8/12/14.
 */
public interface AuditAdmin
{
    List getEvents(Subject subject, long after, long before, int limit) throws UnauthorizedException;
    List getEventsByUsername(Subject subject, long after, long before, String username, int limit) throws UnauthorizedException;
    List getEventsBySource(Subject subject, long after, long before, String source, int limit) throws UnauthorizedException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy