public abstract class io.netty.handler.ssl.DelegatingSslContext extends io.netty.handler.ssl.SslContext
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: io.netty.handler.ssl.DelegatingSslContext
  super_class: io.netty.handler.ssl.SslContext
{
  private final io.netty.handler.ssl.SslContext ctx;
    descriptor: Lio/netty/handler/ssl/SslContext;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected void <init>(io.netty.handler.ssl.SslContext);
    descriptor: (Lio/netty/handler/ssl/SslContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
        start local 1 // io.netty.handler.ssl.SslContext ctx
         0: .line 32
            aload 0 /* this */
            invokespecial io.netty.handler.ssl.SslContext.<init>:()V
         1: .line 33
            aload 0 /* this */
            aload 1 /* ctx */
            ldc "ctx"
            invokestatic io.netty.util.internal.ObjectUtil.checkNotNull:(Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object;
            checkcast io.netty.handler.ssl.SslContext
            putfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
         2: .line 34
            return
        end local 1 // io.netty.handler.ssl.SslContext ctx
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lio/netty/handler/ssl/DelegatingSslContext;
            0    3     1   ctx  Lio/netty/handler/ssl/SslContext;
    MethodParameters:
      Name  Flags
      ctx   

  public final boolean isClient();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
         0: .line 38
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            invokevirtual io.netty.handler.ssl.SslContext.isClient:()Z
            ireturn
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/ssl/DelegatingSslContext;

  public final java.util.List<java.lang.String> cipherSuites();
    descriptor: ()Ljava/util/List;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
         0: .line 43
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            invokevirtual io.netty.handler.ssl.SslContext.cipherSuites:()Ljava/util/List;
            areturn
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/ssl/DelegatingSslContext;
    Signature: ()Ljava/util/List<Ljava/lang/String;>;

  public final long sessionCacheSize();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
         0: .line 48
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            invokevirtual io.netty.handler.ssl.SslContext.sessionCacheSize:()J
            lreturn
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/ssl/DelegatingSslContext;

  public final long sessionTimeout();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
         0: .line 53
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            invokevirtual io.netty.handler.ssl.SslContext.sessionTimeout:()J
            lreturn
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/ssl/DelegatingSslContext;

  public final io.netty.handler.ssl.ApplicationProtocolNegotiator applicationProtocolNegotiator();
    descriptor: ()Lio/netty/handler/ssl/ApplicationProtocolNegotiator;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
         0: .line 58
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            invokevirtual io.netty.handler.ssl.SslContext.applicationProtocolNegotiator:()Lio/netty/handler/ssl/ApplicationProtocolNegotiator;
            areturn
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/ssl/DelegatingSslContext;

  public final javax.net.ssl.SSLEngine newEngine(io.netty.buffer.ByteBufAllocator);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;)Ljavax/net/ssl/SSLEngine;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
        start local 1 // io.netty.buffer.ByteBufAllocator alloc
         0: .line 63
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            aload 1 /* alloc */
            invokevirtual io.netty.handler.ssl.SslContext.newEngine:(Lio/netty/buffer/ByteBufAllocator;)Ljavax/net/ssl/SSLEngine;
            astore 2 /* engine */
        start local 2 // javax.net.ssl.SSLEngine engine
         1: .line 64
            aload 0 /* this */
            aload 2 /* engine */
            invokevirtual io.netty.handler.ssl.DelegatingSslContext.initEngine:(Ljavax/net/ssl/SSLEngine;)V
         2: .line 65
            aload 2 /* engine */
            areturn
        end local 2 // javax.net.ssl.SSLEngine engine
        end local 1 // io.netty.buffer.ByteBufAllocator alloc
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/netty/handler/ssl/DelegatingSslContext;
            0    3     1   alloc  Lio/netty/buffer/ByteBufAllocator;
            1    3     2  engine  Ljavax/net/ssl/SSLEngine;
    MethodParameters:
       Name  Flags
      alloc  

  public final javax.net.ssl.SSLEngine newEngine(io.netty.buffer.ByteBufAllocator, java.lang.String, int);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;Ljava/lang/String;I)Ljavax/net/ssl/SSLEngine;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
        start local 1 // io.netty.buffer.ByteBufAllocator alloc
        start local 2 // java.lang.String peerHost
        start local 3 // int peerPort
         0: .line 70
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            aload 1 /* alloc */
            aload 2 /* peerHost */
            iload 3 /* peerPort */
            invokevirtual io.netty.handler.ssl.SslContext.newEngine:(Lio/netty/buffer/ByteBufAllocator;Ljava/lang/String;I)Ljavax/net/ssl/SSLEngine;
            astore 4 /* engine */
        start local 4 // javax.net.ssl.SSLEngine engine
         1: .line 71
            aload 0 /* this */
            aload 4 /* engine */
            invokevirtual io.netty.handler.ssl.DelegatingSslContext.initEngine:(Ljavax/net/ssl/SSLEngine;)V
         2: .line 72
            aload 4 /* engine */
            areturn
        end local 4 // javax.net.ssl.SSLEngine engine
        end local 3 // int peerPort
        end local 2 // java.lang.String peerHost
        end local 1 // io.netty.buffer.ByteBufAllocator alloc
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/handler/ssl/DelegatingSslContext;
            0    3     1     alloc  Lio/netty/buffer/ByteBufAllocator;
            0    3     2  peerHost  Ljava/lang/String;
            0    3     3  peerPort  I
            1    3     4    engine  Ljavax/net/ssl/SSLEngine;
    MethodParameters:
          Name  Flags
      alloc     
      peerHost  
      peerPort  

  protected final io.netty.handler.ssl.SslHandler newHandler(io.netty.buffer.ByteBufAllocator, boolean);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;Z)Lio/netty/handler/ssl/SslHandler;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
        start local 1 // io.netty.buffer.ByteBufAllocator alloc
        start local 2 // boolean startTls
         0: .line 77
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            aload 1 /* alloc */
            iload 2 /* startTls */
            invokevirtual io.netty.handler.ssl.SslContext.newHandler:(Lio/netty/buffer/ByteBufAllocator;Z)Lio/netty/handler/ssl/SslHandler;
            astore 3 /* handler */
        start local 3 // io.netty.handler.ssl.SslHandler handler
         1: .line 78
            aload 0 /* this */
            aload 3 /* handler */
            invokevirtual io.netty.handler.ssl.DelegatingSslContext.initHandler:(Lio/netty/handler/ssl/SslHandler;)V
         2: .line 79
            aload 3 /* handler */
            areturn
        end local 3 // io.netty.handler.ssl.SslHandler handler
        end local 2 // boolean startTls
        end local 1 // io.netty.buffer.ByteBufAllocator alloc
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/handler/ssl/DelegatingSslContext;
            0    3     1     alloc  Lio/netty/buffer/ByteBufAllocator;
            0    3     2  startTls  Z
            1    3     3   handler  Lio/netty/handler/ssl/SslHandler;
    MethodParameters:
          Name  Flags
      alloc     
      startTls  

  protected final io.netty.handler.ssl.SslHandler newHandler(io.netty.buffer.ByteBufAllocator, java.lang.String, int, boolean);
    descriptor: (Lio/netty/buffer/ByteBufAllocator;Ljava/lang/String;IZ)Lio/netty/handler/ssl/SslHandler;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
        start local 1 // io.netty.buffer.ByteBufAllocator alloc
        start local 2 // java.lang.String peerHost
        start local 3 // int peerPort
        start local 4 // boolean startTls
         0: .line 84
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            aload 1 /* alloc */
            aload 2 /* peerHost */
            iload 3 /* peerPort */
            iload 4 /* startTls */
            invokevirtual io.netty.handler.ssl.SslContext.newHandler:(Lio/netty/buffer/ByteBufAllocator;Ljava/lang/String;IZ)Lio/netty/handler/ssl/SslHandler;
            astore 5 /* handler */
        start local 5 // io.netty.handler.ssl.SslHandler handler
         1: .line 85
            aload 0 /* this */
            aload 5 /* handler */
            invokevirtual io.netty.handler.ssl.DelegatingSslContext.initHandler:(Lio/netty/handler/ssl/SslHandler;)V
         2: .line 86
            aload 5 /* handler */
            areturn
        end local 5 // io.netty.handler.ssl.SslHandler handler
        end local 4 // boolean startTls
        end local 3 // int peerPort
        end local 2 // java.lang.String peerHost
        end local 1 // io.netty.buffer.ByteBufAllocator alloc
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/handler/ssl/DelegatingSslContext;
            0    3     1     alloc  Lio/netty/buffer/ByteBufAllocator;
            0    3     2  peerHost  Ljava/lang/String;
            0    3     3  peerPort  I
            0    3     4  startTls  Z
            1    3     5   handler  Lio/netty/handler/ssl/SslHandler;
    MethodParameters:
          Name  Flags
      alloc     
      peerHost  
      peerPort  
      startTls  

  public final javax.net.ssl.SSLSessionContext sessionContext();
    descriptor: ()Ljavax/net/ssl/SSLSessionContext;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
         0: .line 91
            aload 0 /* this */
            getfield io.netty.handler.ssl.DelegatingSslContext.ctx:Lio/netty/handler/ssl/SslContext;
            invokevirtual io.netty.handler.ssl.SslContext.sessionContext:()Ljavax/net/ssl/SSLSessionContext;
            areturn
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/handler/ssl/DelegatingSslContext;

  protected abstract void initEngine(javax.net.ssl.SSLEngine);
    descriptor: (Ljavax/net/ssl/SSLEngine;)V
    flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
    MethodParameters:
        Name  Flags
      engine  

  protected void initHandler(io.netty.handler.ssl.SslHandler);
    descriptor: (Lio/netty/handler/ssl/SslHandler;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.handler.ssl.DelegatingSslContext this
        start local 1 // io.netty.handler.ssl.SslHandler handler
         0: .line 104
            aload 0 /* this */
            aload 1 /* handler */
            invokevirtual io.netty.handler.ssl.SslHandler.engine:()Ljavax/net/ssl/SSLEngine;
            invokevirtual io.netty.handler.ssl.DelegatingSslContext.initEngine:(Ljavax/net/ssl/SSLEngine;)V
         1: .line 105
            return
        end local 1 // io.netty.handler.ssl.SslHandler handler
        end local 0 // io.netty.handler.ssl.DelegatingSslContext this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/handler/ssl/DelegatingSslContext;
            0    2     1  handler  Lio/netty/handler/ssl/SslHandler;
    MethodParameters:
         Name  Flags
      handler  
}
SourceFile: "DelegatingSslContext.java"