Commit c1404b1e authored by Dave Syer's avatar Dave Syer

Tidy some Javadocs

parent 336b96b8
...@@ -22,8 +22,8 @@ import java.util.Date; ...@@ -22,8 +22,8 @@ import java.util.Date;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.context.ApplicationEventPublisherAware; import org.springframework.context.ApplicationEventPublisherAware;
import org.springframework.security.authentication.AuthenticationEventPublisher;
import org.springframework.util.Assert; import org.springframework.util.Assert;
/** /**
...@@ -32,8 +32,9 @@ import org.springframework.util.Assert; ...@@ -32,8 +32,9 @@ import org.springframework.util.Assert;
* such an event. * such an event.
* <p> * <p>
* Users can inject a {@link AuditEventRepository} to publish their own events or * Users can inject a {@link AuditEventRepository} to publish their own events or
* alternatively use Springs {@link AuthenticationEventPublisher} (usually obtained by * alternatively use Spring's {@link ApplicationEventPublisher} (usually obtained by
* implementing {@link ApplicationEventPublisherAware}). * implementing {@link ApplicationEventPublisherAware}) to publish AuditApplicationEvents
* (wrappers for AuditEvent).
* *
* @author Dave Syer * @author Dave Syer
* @see AuditEventRepository * @see AuditEventRepository
......
...@@ -18,13 +18,12 @@ package org.springframework.boot.actuate.audit.listener; ...@@ -18,13 +18,12 @@ package org.springframework.boot.actuate.audit.listener;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.boot.actuate.audit.AuditEventRepository; import org.springframework.boot.actuate.audit.AuditEventRepository;
import org.springframework.context.ApplicationListener; import org.springframework.context.ApplicationListener;
/** /**
* {@link ApplicationListener} that listens for {@link AuditEvent}s and stores them in a * {@link ApplicationListener} that listens for {@link AuditApplicationEvent}s and stores
* {@link AuditEventRepository}. * them in a {@link AuditEventRepository}.
* *
* @author Dave Syer * @author Dave Syer
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment