Package org.alfresco.repo.audit
Interface AuditFilter
- All Known Implementing Classes:
PropertyAuditFilter
public interface AuditFilter
Filter of audit map values before an audit record is written.
- Author:
- Alan Davis
-
Method Summary
Modifier and TypeMethodDescriptionbooleanaccept(String rootPath, Map<String, Serializable> auditMap) Returnstrueif the audit map values have not been discarded by audit filters.
-
Method Details
-
accept
Returnstrueif the audit map values have not been discarded by audit filters.- Parameters:
rootPath- String a base path ofAuditPathkey entries concatenated with the path separator '/' (AuditApplication.AUDIT_PATH_SEPARATOR)auditMap- Map of values to audit, mapped byAuditPathkey relative to root path.- Returns:
trueif the audit map values should be recorded.
-