class io.undertow.server.protocol.http2.Http2SslSessionInfo implements io.undertow.server.SSLSessionInfo
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: io.undertow.server.protocol.http2.Http2SslSessionInfo
  super_class: java.lang.Object
{
  private final io.undertow.protocols.http2.Http2Channel channel;
    descriptor: Lio/undertow/protocols/http2/Http2Channel;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(io.undertow.protocols.http2.Http2Channel);
    descriptor: (Lio/undertow/protocols/http2/Http2Channel;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
        start local 1 // io.undertow.protocols.http2.Http2Channel channel
         0: .line 42
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 43
            aload 0 /* this */
            aload 1 /* channel */
            putfield io.undertow.server.protocol.http2.Http2SslSessionInfo.channel:Lio/undertow/protocols/http2/Http2Channel;
         2: .line 44
            return
        end local 1 // io.undertow.protocols.http2.Http2Channel channel
        end local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lio/undertow/server/protocol/http2/Http2SslSessionInfo;
            0    3     1  channel  Lio/undertow/protocols/http2/Http2Channel;
    MethodParameters:
         Name  Flags
      channel  

  public byte[] getSessionId();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
         0: .line 48
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2SslSessionInfo.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getSslSession:()Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getId:()[B
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2SslSessionInfo;

  public java.lang.String getCipherSuite();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
         0: .line 53
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2SslSessionInfo.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getSslSession:()Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getCipherSuite:()Ljava/lang/String;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2SslSessionInfo;

  public java.security.cert.Certificate[] getPeerCertificates();
    descriptor: ()[Ljava/security/cert/Certificate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
         0: .line 59
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2SslSessionInfo.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getSslSession:()Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getPeerCertificates:()[Ljava/security/cert/Certificate;
         1: areturn
         2: .line 60
      StackMap locals:
      StackMap stack: javax.net.ssl.SSLPeerUnverifiedException
            astore 1 /* e */
        start local 1 // javax.net.ssl.SSLPeerUnverifiedException e
         3: .line 62
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2SslSessionInfo.channel:Lio/undertow/protocols/http2/Http2Channel;
            getstatic org.xnio.Options.SSL_CLIENT_AUTH_MODE:Lorg/xnio/Option;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getOption:(Lorg/xnio/Option;)Ljava/lang/Object;
            checkcast org.xnio.SslClientAuthMode
            astore 2 /* sslClientAuthMode */
        start local 2 // org.xnio.SslClientAuthMode sslClientAuthMode
         4: .line 63
            aload 2 /* sslClientAuthMode */
            getstatic org.xnio.SslClientAuthMode.NOT_REQUESTED:Lorg/xnio/SslClientAuthMode;
            if_acmpne 7
         5: .line 64
            new io.undertow.server.RenegotiationRequiredException
            dup
            invokespecial io.undertow.server.RenegotiationRequiredException.<init>:()V
            athrow
        end local 2 // org.xnio.SslClientAuthMode sslClientAuthMode
         6: .line 66
      StackMap locals: io.undertow.server.protocol.http2.Http2SslSessionInfo javax.net.ssl.SSLPeerUnverifiedException
      StackMap stack: java.io.IOException
            pop
         7: .line 69
      StackMap locals:
      StackMap stack:
            aload 1 /* e */
            athrow
        end local 1 // javax.net.ssl.SSLPeerUnverifiedException e
        end local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0               this  Lio/undertow/server/protocol/http2/Http2SslSessionInfo;
            3    8     1                  e  Ljavax/net/ssl/SSLPeerUnverifiedException;
            4    6     2  sslClientAuthMode  Lorg/xnio/SslClientAuthMode;
      Exception table:
        from    to  target  type
           0     1       2  Class javax.net.ssl.SSLPeerUnverifiedException
           3     6       6  Class java.io.IOException
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException, io.undertow.server.RenegotiationRequiredException

  public javax.security.cert.X509Certificate[] getPeerCertificateChain();
    descriptor: ()[Ljavax/security/cert/X509Certificate;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
         0: .line 76
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2SslSessionInfo.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getSslSession:()Ljavax/net/ssl/SSLSession;
            invokeinterface javax.net.ssl.SSLSession.getPeerCertificateChain:()[Ljavax/security/cert/X509Certificate;
         1: areturn
         2: .line 77
      StackMap locals:
      StackMap stack: javax.net.ssl.SSLPeerUnverifiedException
            astore 1 /* e */
        start local 1 // javax.net.ssl.SSLPeerUnverifiedException e
         3: .line 79
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2SslSessionInfo.channel:Lio/undertow/protocols/http2/Http2Channel;
            getstatic org.xnio.Options.SSL_CLIENT_AUTH_MODE:Lorg/xnio/Option;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getOption:(Lorg/xnio/Option;)Ljava/lang/Object;
            checkcast org.xnio.SslClientAuthMode
            astore 2 /* sslClientAuthMode */
        start local 2 // org.xnio.SslClientAuthMode sslClientAuthMode
         4: .line 80
            aload 2 /* sslClientAuthMode */
            getstatic org.xnio.SslClientAuthMode.NOT_REQUESTED:Lorg/xnio/SslClientAuthMode;
            if_acmpne 7
         5: .line 81
            new io.undertow.server.RenegotiationRequiredException
            dup
            invokespecial io.undertow.server.RenegotiationRequiredException.<init>:()V
            athrow
        end local 2 // org.xnio.SslClientAuthMode sslClientAuthMode
         6: .line 83
      StackMap locals: io.undertow.server.protocol.http2.Http2SslSessionInfo javax.net.ssl.SSLPeerUnverifiedException
      StackMap stack: java.io.IOException
            pop
         7: .line 86
      StackMap locals:
      StackMap stack:
            aload 1 /* e */
            athrow
        end local 1 // javax.net.ssl.SSLPeerUnverifiedException e
        end local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    8     0               this  Lio/undertow/server/protocol/http2/Http2SslSessionInfo;
            3    8     1                  e  Ljavax/net/ssl/SSLPeerUnverifiedException;
            4    6     2  sslClientAuthMode  Lorg/xnio/SslClientAuthMode;
      Exception table:
        from    to  target  type
           0     1       2  Class javax.net.ssl.SSLPeerUnverifiedException
           3     6       6  Class java.io.IOException
    Exceptions:
      throws javax.net.ssl.SSLPeerUnverifiedException, io.undertow.server.RenegotiationRequiredException

  public void renegotiate(io.undertow.server.HttpServerExchange, org.xnio.SslClientAuthMode);
    descriptor: (Lio/undertow/server/HttpServerExchange;Lorg/xnio/SslClientAuthMode;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
        start local 1 // io.undertow.server.HttpServerExchange exchange
        start local 2 // org.xnio.SslClientAuthMode sslClientAuthMode
         0: .line 91
            getstatic io.undertow.UndertowMessages.MESSAGES:Lio/undertow/UndertowMessages;
            invokeinterface io.undertow.UndertowMessages.renegotiationNotSupported:()Ljava/io/IOException;
            athrow
        end local 2 // org.xnio.SslClientAuthMode sslClientAuthMode
        end local 1 // io.undertow.server.HttpServerExchange exchange
        end local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lio/undertow/server/protocol/http2/Http2SslSessionInfo;
            0    1     1           exchange  Lio/undertow/server/HttpServerExchange;
            0    1     2  sslClientAuthMode  Lorg/xnio/SslClientAuthMode;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                   Name  Flags
      exchange           
      sslClientAuthMode  

  public javax.net.ssl.SSLSession getSSLSession();
    descriptor: ()Ljavax/net/ssl/SSLSession;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
         0: .line 96
            aload 0 /* this */
            getfield io.undertow.server.protocol.http2.Http2SslSessionInfo.channel:Lio/undertow/protocols/http2/Http2Channel;
            invokevirtual io.undertow.protocols.http2.Http2Channel.getSslSession:()Ljavax/net/ssl/SSLSession;
            areturn
        end local 0 // io.undertow.server.protocol.http2.Http2SslSessionInfo this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/undertow/server/protocol/http2/Http2SslSessionInfo;
}
SourceFile: "Http2SslSessionInfo.java"