Package org.alfresco.repo.audit
Interface AuditFilter
-
- All Known Implementing Classes:
PropertyAuditFilter
public interface AuditFilterFilter of audit map values before an audit record is written.- Author:
- Alan Davis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccept(java.lang.String rootPath, java.util.Map<java.lang.String,java.io.Serializable> auditMap)Returnstrueif the audit map values have not been discarded by audit filters.
-
-
-
Method Detail
-
accept
boolean accept(java.lang.String rootPath, java.util.Map<java.lang.String,java.io.Serializable> auditMap)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.
-
-