
com.daedafusion.security.admin.AuditAdmin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of security-framework Show documentation
Show all versions of security-framework Show documentation
A pluggable security framework "inspired" by the OWASP ESAPI framework
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