public abstract class org.hibernate.engine.spi.AbstractDelegatingSessionBuilder<T extends org.hibernate.SessionBuilder> implements org.hibernate.SessionBuilder<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.hibernate.engine.spi.AbstractDelegatingSessionBuilder
  super_class: java.lang.Object
{
  private final org.hibernate.SessionBuilder delegate;
    descriptor: Lorg/hibernate/SessionBuilder;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.hibernate.SessionBuilder);
    descriptor: (Lorg/hibernate/SessionBuilder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // org.hibernate.SessionBuilder delegate
         0: .line 32
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 33
            aload 0 /* this */
            aload 1 /* delegate */
            putfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
         2: .line 34
            return
        end local 1 // org.hibernate.SessionBuilder delegate
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    3     1  delegate  Lorg/hibernate/SessionBuilder;
    MethodParameters:
          Name  Flags
      delegate  

  protected T getThis();
    descriptor: ()Lorg/hibernate/SessionBuilder;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
         0: .line 38
            aload 0 /* this */
            areturn
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
    Signature: ()TT;

  protected org.hibernate.SessionBuilder delegate();
    descriptor: ()Lorg/hibernate/SessionBuilder;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
         0: .line 42
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            areturn
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;

  public org.hibernate.Session openSession();
    descriptor: ()Lorg/hibernate/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
         0: .line 47
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            invokeinterface org.hibernate.SessionBuilder.openSession:()Lorg/hibernate/Session;
            areturn
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;

  public T interceptor(org.hibernate.Interceptor);
    descriptor: (Lorg/hibernate/Interceptor;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // org.hibernate.Interceptor interceptor
         0: .line 52
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* interceptor */
            invokeinterface org.hibernate.SessionBuilder.interceptor:(Lorg/hibernate/Interceptor;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 53
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // org.hibernate.Interceptor interceptor
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  interceptor  Lorg/hibernate/Interceptor;
    Signature: (Lorg/hibernate/Interceptor;)TT;
    MethodParameters:
             Name  Flags
      interceptor  

  public T noInterceptor();
    descriptor: ()Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
         0: .line 58
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            invokeinterface org.hibernate.SessionBuilder.noInterceptor:()Lorg/hibernate/SessionBuilder;
            pop
         1: .line 59
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
    Signature: ()TT;

  public T statementInspector(org.hibernate.resource.jdbc.spi.StatementInspector);
    descriptor: (Lorg/hibernate/resource/jdbc/spi/StatementInspector;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // org.hibernate.resource.jdbc.spi.StatementInspector statementInspector
         0: .line 64
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* statementInspector */
            invokeinterface org.hibernate.SessionBuilder.statementInspector:(Lorg/hibernate/resource/jdbc/spi/StatementInspector;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 65
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // org.hibernate.resource.jdbc.spi.StatementInspector statementInspector
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  statementInspector  Lorg/hibernate/resource/jdbc/spi/StatementInspector;
    Signature: (Lorg/hibernate/resource/jdbc/spi/StatementInspector;)TT;
    MethodParameters:
                    Name  Flags
      statementInspector  

  public T connection(java.sql.Connection);
    descriptor: (Ljava/sql/Connection;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // java.sql.Connection connection
         0: .line 70
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* connection */
            invokeinterface org.hibernate.SessionBuilder.connection:(Ljava/sql/Connection;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 71
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // java.sql.Connection connection
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  connection  Ljava/sql/Connection;
    Signature: (Ljava/sql/Connection;)TT;
    MethodParameters:
            Name  Flags
      connection  

  public T connectionReleaseMode(org.hibernate.ConnectionReleaseMode);
    descriptor: (Lorg/hibernate/ConnectionReleaseMode;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // org.hibernate.ConnectionReleaseMode connectionReleaseMode
         0: .line 77
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* connectionReleaseMode */
            invokeinterface org.hibernate.SessionBuilder.connectionReleaseMode:(Lorg/hibernate/ConnectionReleaseMode;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 78
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // org.hibernate.ConnectionReleaseMode connectionReleaseMode
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  connectionReleaseMode  Lorg/hibernate/ConnectionReleaseMode;
    Signature: (Lorg/hibernate/ConnectionReleaseMode;)TT;
    MethodParameters:
                       Name  Flags
      connectionReleaseMode  

  public T autoJoinTransactions();
    descriptor: (Z)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // boolean autoJoinTransactions
         0: .line 83
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            iload 1 /* autoJoinTransactions */
            invokeinterface org.hibernate.SessionBuilder.autoJoinTransactions:(Z)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 84
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // boolean autoJoinTransactions
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  autoJoinTransactions  Z
    Signature: (Z)TT;
    MethodParameters:
                      Name  Flags
      autoJoinTransactions  

  public T autoClose();
    descriptor: (Z)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // boolean autoClose
         0: .line 89
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            iload 1 /* autoClose */
            invokeinterface org.hibernate.SessionBuilder.autoClose:(Z)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 90
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // boolean autoClose
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  autoClose  Z
    Signature: (Z)TT;
    MethodParameters:
           Name  Flags
      autoClose  

  public T flushBeforeCompletion();
    descriptor: (Z)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // boolean flushBeforeCompletion
         0: .line 96
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            iload 1 /* flushBeforeCompletion */
            invokeinterface org.hibernate.SessionBuilder.flushBeforeCompletion:(Z)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 97
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // boolean flushBeforeCompletion
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  flushBeforeCompletion  Z
    Signature: (Z)TT;
    MethodParameters:
                       Name  Flags
      flushBeforeCompletion  

  public T tenantIdentifier(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // java.lang.String tenantIdentifier
         0: .line 102
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* tenantIdentifier */
            invokeinterface org.hibernate.SessionBuilder.tenantIdentifier:(Ljava/lang/String;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 103
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // java.lang.String tenantIdentifier
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  tenantIdentifier  Ljava/lang/String;
    Signature: (Ljava/lang/String;)TT;
    MethodParameters:
                  Name  Flags
      tenantIdentifier  

  public T eventListeners(org.hibernate.SessionEventListener[]);
    descriptor: ([Lorg/hibernate/SessionEventListener;)Lorg/hibernate/SessionBuilder;
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // org.hibernate.SessionEventListener[] listeners
         0: .line 108
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* listeners */
            invokeinterface org.hibernate.SessionBuilder.eventListeners:([Lorg/hibernate/SessionEventListener;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 109
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // org.hibernate.SessionEventListener[] listeners
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  listeners  [Lorg/hibernate/SessionEventListener;
    Signature: ([Lorg/hibernate/SessionEventListener;)TT;
    MethodParameters:
           Name  Flags
      listeners  

  public T clearEventListeners();
    descriptor: ()Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
         0: .line 114
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            invokeinterface org.hibernate.SessionBuilder.clearEventListeners:()Lorg/hibernate/SessionBuilder;
            pop
         1: .line 115
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
    Signature: ()TT;

  public T jdbcTimeZone(java.util.TimeZone);
    descriptor: (Ljava/util/TimeZone;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // java.util.TimeZone timeZone
         0: .line 120
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* timeZone */
            invokeinterface org.hibernate.SessionBuilder.jdbcTimeZone:(Ljava/util/TimeZone;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 121
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // java.util.TimeZone timeZone
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  timeZone  Ljava/util/TimeZone;
    Signature: (Ljava/util/TimeZone;)TT;
    MethodParameters:
          Name  Flags
      timeZone  

  public T setQueryParameterValidation();
    descriptor: (Z)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // boolean enabled
         0: .line 126
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            iload 1 /* enabled */
            invokeinterface org.hibernate.SessionBuilder.setQueryParameterValidation:(Z)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 127
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // boolean enabled
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  enabled  Z
    Signature: (Z)TT;
    MethodParameters:
         Name  Flags
      enabled  

  public T connectionHandlingMode(org.hibernate.resource.jdbc.spi.PhysicalConnectionHandlingMode);
    descriptor: (Lorg/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // org.hibernate.resource.jdbc.spi.PhysicalConnectionHandlingMode mode
         0: .line 132
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* mode */
            invokeinterface org.hibernate.SessionBuilder.connectionHandlingMode:(Lorg/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 133
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // org.hibernate.resource.jdbc.spi.PhysicalConnectionHandlingMode mode
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  mode  Lorg/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode;
    Signature: (Lorg/hibernate/resource/jdbc/spi/PhysicalConnectionHandlingMode;)TT;
    MethodParameters:
      Name  Flags
      mode  

  public T autoClear();
    descriptor: (Z)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // boolean autoClear
         0: .line 138
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            iload 1 /* autoClear */
            invokeinterface org.hibernate.SessionBuilder.autoClear:(Z)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 139
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // boolean autoClear
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  autoClear  Z
    Signature: (Z)TT;
    MethodParameters:
           Name  Flags
      autoClear  

  public T flushMode(org.hibernate.FlushMode);
    descriptor: (Lorg/hibernate/FlushMode;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
        start local 1 // org.hibernate.FlushMode flushMode
         0: .line 144
            aload 0 /* this */
            getfield org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.delegate:Lorg/hibernate/SessionBuilder;
            aload 1 /* flushMode */
            invokeinterface org.hibernate.SessionBuilder.flushMode:(Lorg/hibernate/FlushMode;)Lorg/hibernate/SessionBuilder;
            pop
         1: .line 145
            aload 0 /* this */
            invokevirtual org.hibernate.engine.spi.AbstractDelegatingSessionBuilder.getThis:()Lorg/hibernate/SessionBuilder;
            areturn
        end local 1 // org.hibernate.FlushMode flushMode
        end local 0 // org.hibernate.engine.spi.AbstractDelegatingSessionBuilder this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/hibernate/engine/spi/AbstractDelegatingSessionBuilder<TT;>;
            0    2     1  flushMode  Lorg/hibernate/FlushMode;
    Signature: (Lorg/hibernate/FlushMode;)TT;
    MethodParameters:
           Name  Flags
      flushMode  
}
Signature: <T::Lorg/hibernate/SessionBuilder;>Ljava/lang/Object;Lorg/hibernate/SessionBuilder<TT;>;
SourceFile: "AbstractDelegatingSessionBuilder.java"