Package com.day.cq.audit
Class AuditLogEvent
- java.lang.Object
-
- com.day.cq.audit.AuditLogEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class AuditLogEvent extends java.lang.Object implements java.io.Serializable
TheAuditLogEvent
class represents the class for an audit event.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
AUDIT_EVENT_PROPERTY
The event property holding theAuditLogEntry
.static java.lang.String
JOB_TOPIC
The job topic for adding an entry to the audit log.
-
Constructor Summary
Constructors Constructor Description AuditLogEvent(java.util.List<AuditLogEntry> entries)
Create a new audit log event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Iterator<AuditLogEntry>
getEntries()
Get the list of entries.
-
-
-
Field Detail
-
JOB_TOPIC
public static final java.lang.String JOB_TOPIC
The job topic for adding an entry to the audit log.- See Also:
- Constant Field Values
-
AUDIT_EVENT_PROPERTY
public static final java.lang.String AUDIT_EVENT_PROPERTY
The event property holding theAuditLogEntry
.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
AuditLogEvent
public AuditLogEvent(java.util.List<AuditLogEntry> entries)
Create a new audit log event.- Parameters:
entries
- The list of audit log entries.
-
-
Method Detail
-
getEntries
public java.util.Iterator<AuditLogEntry> getEntries()
Get the list of entries.- Returns:
- An iterator for the entries.
-
-