public class org.springframework.boot.actuate.audit.AuditEventsEndpoint
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.boot.actuate.audit.AuditEventsEndpoint
  super_class: java.lang.Object
{
  private final org.springframework.boot.actuate.audit.AuditEventRepository auditEventRepository;
    descriptor: Lorg/springframework/boot/actuate/audit/AuditEventRepository;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.springframework.boot.actuate.audit.AuditEventRepository);
    descriptor: (Lorg/springframework/boot/actuate/audit/AuditEventRepository;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.actuate.audit.AuditEventsEndpoint this
        start local 1 // org.springframework.boot.actuate.audit.AuditEventRepository auditEventRepository
         0: .line 39
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 40
            aload 1 /* auditEventRepository */
            ldc "AuditEventRepository must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 41
            aload 0 /* this */
            aload 1 /* auditEventRepository */
            putfield org.springframework.boot.actuate.audit.AuditEventsEndpoint.auditEventRepository:Lorg/springframework/boot/actuate/audit/AuditEventRepository;
         3: .line 42
            return
        end local 1 // org.springframework.boot.actuate.audit.AuditEventRepository auditEventRepository
        end local 0 // org.springframework.boot.actuate.audit.AuditEventsEndpoint this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    4     0                  this  Lorg/springframework/boot/actuate/audit/AuditEventsEndpoint;
            0    4     1  auditEventRepository  Lorg/springframework/boot/actuate/audit/AuditEventRepository;
    MethodParameters:
                      Name  Flags
      auditEventRepository  

  public org.springframework.boot.actuate.audit.AuditEventsEndpoint$AuditEventsDescriptor events(java.lang.String, java.time.OffsetDateTime, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/time/OffsetDateTime;Ljava/lang/String;)Lorg/springframework/boot/actuate/audit/AuditEventsEndpoint$AuditEventsDescriptor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.springframework.boot.actuate.audit.AuditEventsEndpoint this
        start local 1 // java.lang.String principal
        start local 2 // java.time.OffsetDateTime after
        start local 3 // java.lang.String type
         0: .line 47
            aload 0 /* this */
            getfield org.springframework.boot.actuate.audit.AuditEventsEndpoint.auditEventRepository:Lorg/springframework/boot/actuate/audit/AuditEventRepository;
            aload 1 /* principal */
            aload 0 /* this */
            aload 2 /* after */
            invokevirtual org.springframework.boot.actuate.audit.AuditEventsEndpoint.getInstant:(Ljava/time/OffsetDateTime;)Ljava/time/Instant;
            aload 3 /* type */
            invokeinterface org.springframework.boot.actuate.audit.AuditEventRepository.find:(Ljava/lang/String;Ljava/time/Instant;Ljava/lang/String;)Ljava/util/List;
            astore 4 /* events */
        start local 4 // java.util.List events
         1: .line 48
            new org.springframework.boot.actuate.audit.AuditEventsEndpoint$AuditEventsDescriptor
            dup
            aload 4 /* events */
            invokespecial org.springframework.boot.actuate.audit.AuditEventsEndpoint$AuditEventsDescriptor.<init>:(Ljava/util/List;)V
            areturn
        end local 4 // java.util.List events
        end local 3 // java.lang.String type
        end local 2 // java.time.OffsetDateTime after
        end local 1 // java.lang.String principal
        end local 0 // org.springframework.boot.actuate.audit.AuditEventsEndpoint this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/springframework/boot/actuate/audit/AuditEventsEndpoint;
            0    2     1  principal  Ljava/lang/String;
            0    2     2      after  Ljava/time/OffsetDateTime;
            0    2     3       type  Ljava/lang/String;
            1    2     4     events  Ljava/util/List<Lorg/springframework/boot/actuate/audit/AuditEvent;>;
    RuntimeVisibleAnnotations: 
      org.springframework.boot.actuate.endpoint.annotation.ReadOperation()
    RuntimeVisibleParameterAnnotations: 
      0:
        org.springframework.lang.Nullable()
      1:
        org.springframework.lang.Nullable()
      2:
        org.springframework.lang.Nullable()
    MethodParameters:
           Name  Flags
      principal  
      after      
      type       

  private java.time.Instant getInstant(java.time.OffsetDateTime);
    descriptor: (Ljava/time/OffsetDateTime;)Ljava/time/Instant;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.springframework.boot.actuate.audit.AuditEventsEndpoint this
        start local 1 // java.time.OffsetDateTime offsetDateTime
         0: .line 52
            aload 1 /* offsetDateTime */
            ifnull 1
            aload 1 /* offsetDateTime */
            invokevirtual java.time.OffsetDateTime.toInstant:()Ljava/time/Instant;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aconst_null
      StackMap locals:
      StackMap stack: java.time.Instant
         2: areturn
        end local 1 // java.time.OffsetDateTime offsetDateTime
        end local 0 // org.springframework.boot.actuate.audit.AuditEventsEndpoint this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    3     0            this  Lorg/springframework/boot/actuate/audit/AuditEventsEndpoint;
            0    3     1  offsetDateTime  Ljava/time/OffsetDateTime;
    MethodParameters:
                Name  Flags
      offsetDateTime  
}
SourceFile: "AuditEventsEndpoint.java"
NestMembers:
  org.springframework.boot.actuate.audit.AuditEventsEndpoint$AuditEventsDescriptor
InnerClasses:
  public final AuditEventsDescriptor = org.springframework.boot.actuate.audit.AuditEventsEndpoint$AuditEventsDescriptor of org.springframework.boot.actuate.audit.AuditEventsEndpoint
    RuntimeVisibleAnnotations: 
      org.springframework.boot.actuate.endpoint.annotation.Endpoint(id = "auditevents")