You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/audit/AuditEventRepository.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -34,10 +34,10 @@ public interface AuditEventRepository {
34
34
voidadd(AuditEventevent);
35
35
36
36
/**
37
-
* Find audit events of specified type relating to the specified principal since the
38
-
* time provided.
37
+
* Find audit events of specified type relating to the specified principal that
38
+
* occurred {@link Instant#isAfter(Instant) after} the time provided.
39
39
* @param principal the principal name to search for (or {@code null} if unrestricted)
40
-
* @param after timestamp of earliest result required (or {@code null} if
40
+
* @param after time after which an event must have occurred (or {@code null} if
41
41
* unrestricted)
42
42
* @param type the event type to search for (or {@code null} if unrestricted)
43
43
* @return audit events of specified type relating to the principal
0 commit comments