Package | Description |
---|---|
org.springframework.boot.actuate.audit |
Core actuator auditing classes.
|
org.springframework.boot.actuate.audit.listener |
Actuator auditing listeners.
|
org.springframework.boot.actuate.security |
Actuator support for security.
|
Modifier and Type | Method and Description |
---|---|
List<AuditEvent> |
InMemoryAuditEventRepository.find(Date after) |
List<AuditEvent> |
AuditEventRepository.find(Date after)
Find audit events since the time provided.
|
List<AuditEvent> |
InMemoryAuditEventRepository.find(String principal,
Date after) |
List<AuditEvent> |
AuditEventRepository.find(String principal,
Date after)
Find audit events relating to the specified principal since the time provided.
|
List<AuditEvent> |
InMemoryAuditEventRepository.find(String principal,
Date after,
String type) |
List<AuditEvent> |
AuditEventRepository.find(String principal,
Date after,
String type)
Find audit events of specified type relating to the specified principal since the
time provided.
|
List<AuditEvent> |
AuditEventsEndpoint.AuditEventsDescriptor.getEvents() |
Modifier and Type | Method and Description |
---|---|
void |
InMemoryAuditEventRepository.add(AuditEvent event) |
void |
AuditEventRepository.add(AuditEvent event)
Log an event.
|
Modifier and Type | Method and Description |
---|---|
AuditEvent |
AuditApplicationEvent.getAuditEvent()
Get the audit event.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AuditListener.onAuditEvent(AuditEvent event) |
protected abstract void |
AbstractAuditListener.onAuditEvent(AuditEvent event) |
Constructor and Description |
---|
AuditApplicationEvent(AuditEvent auditEvent)
Create a new
AuditApplicationEvent that wraps the specified
AuditEvent . |
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractAuthorizationAuditListener.publish(AuditEvent event) |
protected void |
AbstractAuthenticationAuditListener.publish(AuditEvent event) |
Copyright © 2017 Pivotal Software, Inc.. All rights reserved.