File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/audit Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2222import java .util .HashMap ;
2323import java .util .Map ;
2424
25+ import org .springframework .context .ApplicationEventPublisher ;
2526import org .springframework .context .ApplicationEventPublisherAware ;
26- import org .springframework .security .authentication .AuthenticationEventPublisher ;
2727import org .springframework .util .Assert ;
2828
2929/**
3232 * such an event.
3333 * <p>
3434 * Users can inject a {@link AuditEventRepository} to publish their own events or
35- * alternatively use Springs {@link AuthenticationEventPublisher} (usually obtained by
36- * implementing {@link ApplicationEventPublisherAware}).
35+ * alternatively use Spring's {@link ApplicationEventPublisher} (usually obtained by
36+ * implementing {@link ApplicationEventPublisherAware}) to publish AuditApplicationEvents
37+ * (wrappers for AuditEvent).
3738 *
3839 * @author Dave Syer
3940 * @see AuditEventRepository
Original file line number Diff line number Diff line change 1818
1919import org .apache .commons .logging .Log ;
2020import org .apache .commons .logging .LogFactory ;
21- import org .springframework .boot .actuate .audit .AuditEvent ;
2221import org .springframework .boot .actuate .audit .AuditEventRepository ;
2322import org .springframework .context .ApplicationListener ;
2423
2524/**
26- * {@link ApplicationListener} that listens for {@link AuditEvent }s and stores them in a
27- * {@link AuditEventRepository}.
25+ * {@link ApplicationListener} that listens for {@link AuditApplicationEvent }s and stores
26+ * them in a {@link AuditEventRepository}.
2827 *
2928 * @author Dave Syer
3029 */
You can’t perform that action at this time.
0 commit comments