public class org.springframework.boot.actuate.info.InfoEndpoint
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.boot.actuate.info.InfoEndpoint
  super_class: java.lang.Object
{
  private final java.util.List<org.springframework.boot.actuate.info.InfoContributor> infoContributors;
    descriptor: Ljava/util/List;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/List<Lorg/springframework/boot/actuate/info/InfoContributor;>;

  public void <init>(java.util.List<org.springframework.boot.actuate.info.InfoContributor>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.springframework.boot.actuate.info.InfoEndpoint this
        start local 1 // java.util.List infoContributors
         0: .line 43
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 44
            aload 1 /* infoContributors */
            ldc "Info contributors must not be null"
            invokestatic org.springframework.util.Assert.notNull:(Ljava/lang/Object;Ljava/lang/String;)V
         2: .line 45
            aload 0 /* this */
            aload 1 /* infoContributors */
            putfield org.springframework.boot.actuate.info.InfoEndpoint.infoContributors:Ljava/util/List;
         3: .line 46
            return
        end local 1 // java.util.List infoContributors
        end local 0 // org.springframework.boot.actuate.info.InfoEndpoint this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    4     0              this  Lorg/springframework/boot/actuate/info/InfoEndpoint;
            0    4     1  infoContributors  Ljava/util/List<Lorg/springframework/boot/actuate/info/InfoContributor;>;
    Signature: (Ljava/util/List<Lorg/springframework/boot/actuate/info/InfoContributor;>;)V
    MethodParameters:
                  Name  Flags
      infoContributors  

  public java.util.Map<java.lang.String, java.lang.Object> info();
    descriptor: ()Ljava/util/Map;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // org.springframework.boot.actuate.info.InfoEndpoint this
         0: .line 50
            new org.springframework.boot.actuate.info.Info$Builder
            dup
            invokespecial org.springframework.boot.actuate.info.Info$Builder.<init>:()V
            astore 1 /* builder */
        start local 1 // org.springframework.boot.actuate.info.Info$Builder builder
         1: .line 51
            aload 0 /* this */
            getfield org.springframework.boot.actuate.info.InfoEndpoint.infoContributors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 4
      StackMap locals: org.springframework.boot.actuate.info.InfoEndpoint org.springframework.boot.actuate.info.Info$Builder top java.util.Iterator
      StackMap stack:
         2: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.springframework.boot.actuate.info.InfoContributor
            astore 2 /* contributor */
        start local 2 // org.springframework.boot.actuate.info.InfoContributor contributor
         3: .line 52
            aload 2 /* contributor */
            aload 1 /* builder */
            invokeinterface org.springframework.boot.actuate.info.InfoContributor.contribute:(Lorg/springframework/boot/actuate/info/Info$Builder;)V
        end local 2 // org.springframework.boot.actuate.info.InfoContributor contributor
         4: .line 51
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 54
            aload 1 /* builder */
            invokevirtual org.springframework.boot.actuate.info.Info$Builder.build:()Lorg/springframework/boot/actuate/info/Info;
            astore 2 /* build */
        start local 2 // org.springframework.boot.actuate.info.Info build
         6: .line 55
            aload 2 /* build */
            invokevirtual org.springframework.boot.actuate.info.Info.getDetails:()Ljava/util/Map;
            areturn
        end local 2 // org.springframework.boot.actuate.info.Info build
        end local 1 // org.springframework.boot.actuate.info.Info$Builder builder
        end local 0 // org.springframework.boot.actuate.info.InfoEndpoint this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lorg/springframework/boot/actuate/info/InfoEndpoint;
            1    7     1      builder  Lorg/springframework/boot/actuate/info/Info$Builder;
            3    4     2  contributor  Lorg/springframework/boot/actuate/info/InfoContributor;
            6    7     2        build  Lorg/springframework/boot/actuate/info/Info;
    Signature: ()Ljava/util/Map<Ljava/lang/String;Ljava/lang/Object;>;
    RuntimeVisibleAnnotations: 
      org.springframework.boot.actuate.endpoint.annotation.ReadOperation()
}
SourceFile: "InfoEndpoint.java"
InnerClasses:
  public Builder = org.springframework.boot.actuate.info.Info$Builder of org.springframework.boot.actuate.info.Info
    RuntimeVisibleAnnotations: 
      org.springframework.boot.actuate.endpoint.annotation.Endpoint(id = "info")