Package org.jboss.security.audit
Class AbstractAuditProvider
- java.lang.Object
-
- org.jboss.security.audit.AbstractAuditProvider
-
- All Implemented Interfaces:
AuditProvider
- Direct Known Subclasses:
LogAuditProvider
public abstract class AbstractAuditProvider extends Object implements AuditProvider
Abstract class of Audit Providers.An audit provider is one that can be used to log audit events in a file, a database or any external sink of choice
- Since:
- Aug 21, 2006
- Version:
- $Revision$
- Author:
- Anil Saldhana
-
-
Constructor Summary
Constructors Constructor Description AbstractAuditProvider()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
audit(AuditEvent auditEvent)
Perform an audit of the event passed A provider can log the audit as per needs.
-
-
-
Method Detail
-
audit
public abstract void audit(AuditEvent auditEvent)
Description copied from interface:AuditProvider
Perform an audit of the event passed A provider can log the audit as per needs.- Specified by:
audit
in interfaceAuditProvider
- Parameters:
auditEvent
- audit event that holds information on the audit- See Also:
AuditProvider.audit(AuditEvent)
-
-