class org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl implements org.hibernate.engine.spi.SessionBuilderImplementor
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl
  super_class: java.lang.Object
{
  private static final org.jboss.logging.Logger log;
    descriptor: Lorg/jboss/logging/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final org.hibernate.internal.SessionFactoryImpl sessionFactory;
    descriptor: Lorg/hibernate/internal/SessionFactoryImpl;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.hibernate.engine.spi.SessionOwner sessionOwner;
    descriptor: Lorg/hibernate/engine/spi/SessionOwner;
    flags: (0x0002) ACC_PRIVATE

  private org.hibernate.Interceptor interceptor;
    descriptor: Lorg/hibernate/Interceptor;
    flags: (0x0002) ACC_PRIVATE

  private java.sql.Connection connection;
    descriptor: Ljava/sql/Connection;
    flags: (0x0002) ACC_PRIVATE

  private org.hibernate.ConnectionReleaseMode connectionReleaseMode;
    descriptor: Lorg/hibernate/ConnectionReleaseMode;
    flags: (0x0002) ACC_PRIVATE

  private boolean autoClose;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean autoJoinTransactions;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private boolean flushBeforeCompletion;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private java.lang.String tenantIdentifier;
    descriptor: Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE

  private java.util.List<org.hibernate.SessionEventListener> listeners;
    descriptor: Ljava/util/List;
    flags: (0x0002) ACC_PRIVATE
    Signature: Ljava/util/List<Lorg/hibernate/SessionEventListener;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 1547
            ldc Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            invokestatic org.hibernate.internal.CoreLogging.logger:(Ljava/lang/Class;)Lorg/jboss/logging/Logger;
            putstatic org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.log:Lorg/jboss/logging/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(org.hibernate.internal.SessionFactoryImpl);
    descriptor: (Lorg/hibernate/internal/SessionFactoryImpl;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // org.hibernate.internal.SessionFactoryImpl sessionFactory
         0: .line 1560
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 1555
            aload 0 /* this */
            iconst_1
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.autoJoinTransactions:Z
         2: .line 1561
            aload 0 /* this */
            aload 1 /* sessionFactory */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.sessionFactory:Lorg/hibernate/internal/SessionFactoryImpl;
         3: .line 1562
            aload 0 /* this */
            aconst_null
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.sessionOwner:Lorg/hibernate/engine/spi/SessionOwner;
         4: .line 1563
            aload 1 /* sessionFactory */
            getfield org.hibernate.internal.SessionFactoryImpl.settings:Lorg/hibernate/cfg/Settings;
            astore 2 /* settings */
        start local 2 // org.hibernate.cfg.Settings settings
         5: .line 1566
            aload 0 /* this */
            aload 1 /* sessionFactory */
            invokevirtual org.hibernate.internal.SessionFactoryImpl.getInterceptor:()Lorg/hibernate/Interceptor;
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.interceptor:Lorg/hibernate/Interceptor;
         6: .line 1567
            aload 0 /* this */
            aload 2 /* settings */
            invokevirtual org.hibernate.cfg.Settings.getConnectionReleaseMode:()Lorg/hibernate/ConnectionReleaseMode;
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.connectionReleaseMode:Lorg/hibernate/ConnectionReleaseMode;
         7: .line 1568
            aload 0 /* this */
            aload 2 /* settings */
            invokevirtual org.hibernate.cfg.Settings.isAutoCloseSessionEnabled:()Z
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.autoClose:Z
         8: .line 1569
            aload 0 /* this */
            aload 2 /* settings */
            invokevirtual org.hibernate.cfg.Settings.isFlushBeforeCompletionEnabled:()Z
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.flushBeforeCompletion:Z
         9: .line 1571
            aload 1 /* sessionFactory */
            invokevirtual org.hibernate.internal.SessionFactoryImpl.getCurrentTenantIdentifierResolver:()Lorg/hibernate/context/spi/CurrentTenantIdentifierResolver;
            ifnull 11
        10: .line 1572
            aload 0 /* this */
            aload 1 /* sessionFactory */
            invokevirtual org.hibernate.internal.SessionFactoryImpl.getCurrentTenantIdentifierResolver:()Lorg/hibernate/context/spi/CurrentTenantIdentifierResolver;
            invokeinterface org.hibernate.context.spi.CurrentTenantIdentifierResolver.resolveCurrentTenantIdentifier:()Ljava/lang/String;
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.tenantIdentifier:Ljava/lang/String;
        11: .line 1575
      StackMap locals: org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl org.hibernate.internal.SessionFactoryImpl org.hibernate.cfg.Settings
      StackMap stack:
            aload 0 /* this */
            aload 2 /* settings */
            invokevirtual org.hibernate.cfg.Settings.getBaselineSessionEventsListenerBuilder:()Lorg/hibernate/cfg/BaselineSessionEventsListenerBuilder;
            invokevirtual org.hibernate.cfg.BaselineSessionEventsListenerBuilder.buildBaselineList:()Ljava/util/List;
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.listeners:Ljava/util/List;
        12: .line 1576
            return
        end local 2 // org.hibernate.cfg.Settings settings
        end local 1 // org.hibernate.internal.SessionFactoryImpl sessionFactory
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   13     0            this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0   13     1  sessionFactory  Lorg/hibernate/internal/SessionFactoryImpl;
            5   13     2        settings  Lorg/hibernate/cfg/Settings;
    MethodParameters:
                Name  Flags
      sessionFactory  

  protected org.hibernate.engine.transaction.internal.TransactionCoordinatorImpl getTransactionCoordinator();
    descriptor: ()Lorg/hibernate/engine/transaction/internal/TransactionCoordinatorImpl;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
         0: .line 1579
            aconst_null
            areturn
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;

  protected org.hibernate.engine.spi.ActionQueue$TransactionCompletionProcesses getTransactionCompletionProcesses();
    descriptor: ()Lorg/hibernate/engine/spi/ActionQueue$TransactionCompletionProcesses;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
         0: .line 1583
            aconst_null
            areturn
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;

  public org.hibernate.Session openSession();
    descriptor: ()Lorg/hibernate/Session;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=15, locals=4, args_size=1
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
         0: .line 1588
            getstatic org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.log:Lorg/jboss/logging/Logger;
            ldc "Opening Hibernate Session.  tenant=%s, owner=%s"
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.tenantIdentifier:Ljava/lang/String;
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.sessionOwner:Lorg/hibernate/engine/spi/SessionOwner;
            invokevirtual org.jboss.logging.Logger.tracef:(Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)V
         1: .line 1589
            new org.hibernate.internal.SessionImpl
            dup
         2: .line 1590
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.connection:Ljava/sql/Connection;
         3: .line 1591
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.sessionFactory:Lorg/hibernate/internal/SessionFactoryImpl;
         4: .line 1592
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.sessionOwner:Lorg/hibernate/engine/spi/SessionOwner;
         5: .line 1593
            aload 0 /* this */
            invokevirtual org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.getTransactionCoordinator:()Lorg/hibernate/engine/transaction/internal/TransactionCoordinatorImpl;
         6: .line 1594
            aload 0 /* this */
            invokevirtual org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.getTransactionCompletionProcesses:()Lorg/hibernate/engine/spi/ActionQueue$TransactionCompletionProcesses;
         7: .line 1595
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.autoJoinTransactions:Z
         8: .line 1596
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.sessionFactory:Lorg/hibernate/internal/SessionFactoryImpl;
            getfield org.hibernate.internal.SessionFactoryImpl.settings:Lorg/hibernate/cfg/Settings;
            invokevirtual org.hibernate.cfg.Settings.getRegionFactory:()Lorg/hibernate/cache/spi/RegionFactory;
            invokeinterface org.hibernate.cache.spi.RegionFactory.nextTimestamp:()J
         9: .line 1597
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.interceptor:Lorg/hibernate/Interceptor;
        10: .line 1598
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.flushBeforeCompletion:Z
        11: .line 1599
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.autoClose:Z
        12: .line 1600
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.connectionReleaseMode:Lorg/hibernate/ConnectionReleaseMode;
        13: .line 1601
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.tenantIdentifier:Ljava/lang/String;
        14: .line 1589
            invokespecial org.hibernate.internal.SessionImpl.<init>:(Ljava/sql/Connection;Lorg/hibernate/internal/SessionFactoryImpl;Lorg/hibernate/engine/spi/SessionOwner;Lorg/hibernate/engine/transaction/internal/TransactionCoordinatorImpl;Lorg/hibernate/engine/spi/ActionQueue$TransactionCompletionProcesses;ZJLorg/hibernate/Interceptor;ZZLorg/hibernate/ConnectionReleaseMode;Ljava/lang/String;)V
            astore 1 /* session */
        start local 1 // org.hibernate.internal.SessionImpl session
        15: .line 1604
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.listeners:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 18
      StackMap locals: org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl org.hibernate.internal.SessionImpl top java.util.Iterator
      StackMap stack:
        16: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.SessionEventListener
            astore 2 /* listener */
        start local 2 // org.hibernate.SessionEventListener listener
        17: .line 1605
            aload 1 /* session */
            invokevirtual org.hibernate.internal.SessionImpl.getEventListenerManager:()Lorg/hibernate/engine/internal/SessionEventListenerManagerImpl;
            iconst_1
            anewarray org.hibernate.SessionEventListener
            dup
            iconst_0
            aload 2 /* listener */
            aastore
            invokevirtual org.hibernate.engine.internal.SessionEventListenerManagerImpl.addListener:([Lorg/hibernate/SessionEventListener;)V
        end local 2 // org.hibernate.SessionEventListener listener
        18: .line 1604
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 16
        19: .line 1608
            aload 1 /* session */
            areturn
        end local 1 // org.hibernate.internal.SessionImpl session
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   20     0      this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
           15   20     1   session  Lorg/hibernate/internal/SessionImpl;
           17   18     2  listener  Lorg/hibernate/SessionEventListener;

  public org.hibernate.SessionBuilder owner(org.hibernate.engine.spi.SessionOwner);
    descriptor: (Lorg/hibernate/engine/spi/SessionOwner;)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // org.hibernate.engine.spi.SessionOwner sessionOwner
         0: .line 1613
            aload 0 /* this */
            aload 1 /* sessionOwner */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.sessionOwner:Lorg/hibernate/engine/spi/SessionOwner;
         1: .line 1614
            aload 0 /* this */
            areturn
        end local 1 // org.hibernate.engine.spi.SessionOwner sessionOwner
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  sessionOwner  Lorg/hibernate/engine/spi/SessionOwner;
    MethodParameters:
              Name  Flags
      sessionOwner  

  public org.hibernate.SessionBuilder 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.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // org.hibernate.Interceptor interceptor
         0: .line 1619
            aload 0 /* this */
            aload 1 /* interceptor */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.interceptor:Lorg/hibernate/Interceptor;
         1: .line 1620
            aload 0 /* this */
            areturn
        end local 1 // org.hibernate.Interceptor interceptor
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  interceptor  Lorg/hibernate/Interceptor;
    MethodParameters:
             Name  Flags
      interceptor  

  public org.hibernate.SessionBuilder noInterceptor();
    descriptor: ()Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
         0: .line 1625
            aload 0 /* this */
            getstatic org.hibernate.EmptyInterceptor.INSTANCE:Lorg/hibernate/Interceptor;
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.interceptor:Lorg/hibernate/Interceptor;
         1: .line 1626
            aload 0 /* this */
            areturn
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;

  public org.hibernate.SessionBuilder 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.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // java.sql.Connection connection
         0: .line 1631
            aload 0 /* this */
            aload 1 /* connection */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.connection:Ljava/sql/Connection;
         1: .line 1632
            aload 0 /* this */
            areturn
        end local 1 // java.sql.Connection connection
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  connection  Ljava/sql/Connection;
    MethodParameters:
            Name  Flags
      connection  

  public org.hibernate.SessionBuilder 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.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // org.hibernate.ConnectionReleaseMode connectionReleaseMode
         0: .line 1637
            aload 0 /* this */
            aload 1 /* connectionReleaseMode */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.connectionReleaseMode:Lorg/hibernate/ConnectionReleaseMode;
         1: .line 1638
            aload 0 /* this */
            areturn
        end local 1 // org.hibernate.ConnectionReleaseMode connectionReleaseMode
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  connectionReleaseMode  Lorg/hibernate/ConnectionReleaseMode;
    MethodParameters:
                       Name  Flags
      connectionReleaseMode  

  public org.hibernate.SessionBuilder autoJoinTransactions(boolean);
    descriptor: (Z)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // boolean autoJoinTransactions
         0: .line 1643
            aload 0 /* this */
            iload 1 /* autoJoinTransactions */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.autoJoinTransactions:Z
         1: .line 1644
            aload 0 /* this */
            areturn
        end local 1 // boolean autoJoinTransactions
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0    2     0                  this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  autoJoinTransactions  Z
    MethodParameters:
                      Name  Flags
      autoJoinTransactions  

  public org.hibernate.SessionBuilder autoClose(boolean);
    descriptor: (Z)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // boolean autoClose
         0: .line 1649
            aload 0 /* this */
            iload 1 /* autoClose */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.autoClose:Z
         1: .line 1650
            aload 0 /* this */
            areturn
        end local 1 // boolean autoClose
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  autoClose  Z
    MethodParameters:
           Name  Flags
      autoClose  

  public org.hibernate.SessionBuilder flushBeforeCompletion(boolean);
    descriptor: (Z)Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // boolean flushBeforeCompletion
         0: .line 1655
            aload 0 /* this */
            iload 1 /* flushBeforeCompletion */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.flushBeforeCompletion:Z
         1: .line 1656
            aload 0 /* this */
            areturn
        end local 1 // boolean flushBeforeCompletion
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    2     0                   this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  flushBeforeCompletion  Z
    MethodParameters:
                       Name  Flags
      flushBeforeCompletion  

  public org.hibernate.SessionBuilder 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.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // java.lang.String tenantIdentifier
         0: .line 1661
            aload 0 /* this */
            aload 1 /* tenantIdentifier */
            putfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.tenantIdentifier:Ljava/lang/String;
         1: .line 1662
            aload 0 /* this */
            areturn
        end local 1 // java.lang.String tenantIdentifier
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    2     0              this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  tenantIdentifier  Ljava/lang/String;
    MethodParameters:
                  Name  Flags
      tenantIdentifier  

  public org.hibernate.SessionBuilder 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.internal.SessionFactoryImpl$SessionBuilderImpl this
        start local 1 // org.hibernate.SessionEventListener[] listeners
         0: .line 1667
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.listeners:Ljava/util/List;
            aload 1 /* listeners */
            invokestatic java.util.Collections.addAll:(Ljava/util/Collection;[Ljava/lang/Object;)Z
            pop
         1: .line 1668
            aload 0 /* this */
            areturn
        end local 1 // org.hibernate.SessionEventListener[] listeners
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
            0    2     1  listeners  [Lorg/hibernate/SessionEventListener;
    MethodParameters:
           Name  Flags
      listeners  

  public org.hibernate.SessionBuilder clearEventListeners();
    descriptor: ()Lorg/hibernate/SessionBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
         0: .line 1673
            aload 0 /* this */
            getfield org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl.listeners:Ljava/util/List;
            invokeinterface java.util.List.clear:()V
         1: .line 1674
            aload 0 /* this */
            areturn
        end local 0 // org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/hibernate/internal/SessionFactoryImpl$SessionBuilderImpl;
}
SourceFile: "SessionFactoryImpl.java"
NestHost: org.hibernate.internal.SessionFactoryImpl
InnerClasses:
  public TransactionCompletionProcesses = org.hibernate.engine.spi.ActionQueue$TransactionCompletionProcesses of org.hibernate.engine.spi.ActionQueue
  SessionBuilderImpl = org.hibernate.internal.SessionFactoryImpl$SessionBuilderImpl of org.hibernate.internal.SessionFactoryImpl