public class examples.WebClientSessionExamples
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: examples.WebClientSessionExamples
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // examples.WebClientSessionExamples this
         0: .line 7
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // examples.WebClientSessionExamples this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lexamples/WebClientSessionExamples;

  public void create(io.vertx.core.Vertx);
    descriptor: (Lio/vertx/core/Vertx;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=2
        start local 0 // examples.WebClientSessionExamples this
        start local 1 // io.vertx.core.Vertx vertx
         0: .line 10
            aload 1 /* vertx */
            invokestatic io.vertx.ext.web.client.WebClient.create:(Lio/vertx/core/Vertx;)Lio/vertx/ext/web/client/WebClient;
            astore 2 /* client */
        start local 2 // io.vertx.ext.web.client.WebClient client
         1: .line 11
            aload 2 /* client */
            invokestatic io.vertx.ext.web.client.WebClientSession.create:(Lio/vertx/ext/web/client/WebClient;)Lio/vertx/ext/web/client/WebClientSession;
            pop
         2: .line 12
            return
        end local 2 // io.vertx.ext.web.client.WebClient client
        end local 1 // io.vertx.core.Vertx vertx
        end local 0 // examples.WebClientSessionExamples this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lexamples/WebClientSessionExamples;
            0    3     1   vertx  Lio/vertx/core/Vertx;
            1    3     2  client  Lio/vertx/ext/web/client/WebClient;
    MethodParameters:
       Name  Flags
      vertx  

  public void setHeaders(io.vertx.ext.web.client.WebClient, java.lang.String);
    descriptor: (Lio/vertx/ext/web/client/WebClient;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // examples.WebClientSessionExamples this
        start local 1 // io.vertx.ext.web.client.WebClient client
        start local 2 // java.lang.String jwtToken
         0: .line 15
            aload 1 /* client */
            invokestatic io.vertx.ext.web.client.WebClientSession.create:(Lio/vertx/ext/web/client/WebClient;)Lio/vertx/ext/web/client/WebClientSession;
            astore 3 /* session */
        start local 3 // io.vertx.ext.web.client.WebClientSession session
         1: .line 16
            aload 3 /* session */
            ldc "my-jwt-token"
            aload 2 /* jwtToken */
            invokeinterface io.vertx.ext.web.client.WebClientSession.addHeader:(Ljava/lang/String;Ljava/lang/String;)Lio/vertx/ext/web/client/WebClientSession;
            pop
         2: .line 17
            return
        end local 3 // io.vertx.ext.web.client.WebClientSession session
        end local 2 // java.lang.String jwtToken
        end local 1 // io.vertx.ext.web.client.WebClient client
        end local 0 // examples.WebClientSessionExamples this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lexamples/WebClientSessionExamples;
            0    3     1    client  Lio/vertx/ext/web/client/WebClient;
            0    3     2  jwtToken  Ljava/lang/String;
            1    3     3   session  Lio/vertx/ext/web/client/WebClientSession;
    MethodParameters:
          Name  Flags
      client    
      jwtToken  
}
SourceFile: "WebClientSessionExamples.java"