public class org.hibernate.secure.spi.JaccIntegrator implements org.hibernate.integrator.spi.ServiceContributingIntegrator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.hibernate.secure.spi.JaccIntegrator
  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 static final org.hibernate.event.service.spi.DuplicationStrategy DUPLICATION_STRATEGY;
    descriptor: Lorg/hibernate/event/service/spi/DuplicationStrategy;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 54
            ldc Lorg/hibernate/secure/spi/JaccIntegrator;
            invokestatic org.jboss.logging.Logger.getLogger:(Ljava/lang/Class;)Lorg/jboss/logging/Logger;
            putstatic org.hibernate.secure.spi.JaccIntegrator.log:Lorg/jboss/logging/Logger;
         1: .line 56
            new org.hibernate.secure.spi.JaccIntegrator$1
            dup
            invokespecial org.hibernate.secure.spi.JaccIntegrator$1.<init>:()V
            putstatic org.hibernate.secure.spi.JaccIntegrator.DUPLICATION_STRATEGY:Lorg/hibernate/event/service/spi/DuplicationStrategy;
         2: .line 67
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.hibernate.secure.spi.JaccIntegrator this
         0: .line 53
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.hibernate.secure.spi.JaccIntegrator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/hibernate/secure/spi/JaccIntegrator;

  public void prepareServices(org.hibernate.boot.registry.StandardServiceRegistryBuilder);
    descriptor: (Lorg/hibernate/boot/registry/StandardServiceRegistryBuilder;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // org.hibernate.secure.spi.JaccIntegrator this
        start local 1 // org.hibernate.boot.registry.StandardServiceRegistryBuilder serviceRegistryBuilder
         0: .line 71
            aload 1 /* serviceRegistryBuilder */
            invokevirtual org.hibernate.boot.registry.StandardServiceRegistryBuilder.getSettings:()Ljava/util/Map;
            ldc "hibernate.jacc.enabled"
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            istore 2 /* isSecurityEnabled */
        start local 2 // boolean isSecurityEnabled
         1: .line 72
            iload 2 /* isSecurityEnabled */
            ifeq 2
            new org.hibernate.secure.internal.StandardJaccServiceImpl
            dup
            invokespecial org.hibernate.secure.internal.StandardJaccServiceImpl.<init>:()V
            goto 3
      StackMap locals: int
      StackMap stack:
         2: new org.hibernate.secure.internal.DisabledJaccServiceImpl
            dup
            invokespecial org.hibernate.secure.internal.DisabledJaccServiceImpl.<init>:()V
      StackMap locals:
      StackMap stack: org.hibernate.secure.spi.JaccService
         3: astore 3 /* jaccService */
        start local 3 // org.hibernate.secure.spi.JaccService jaccService
         4: .line 73
            aload 1 /* serviceRegistryBuilder */
            ldc Lorg/hibernate/secure/spi/JaccService;
            aload 3 /* jaccService */
            invokevirtual org.hibernate.boot.registry.StandardServiceRegistryBuilder.addService:(Ljava/lang/Class;Lorg/hibernate/service/Service;)Lorg/hibernate/boot/registry/StandardServiceRegistryBuilder;
            pop
         5: .line 74
            return
        end local 3 // org.hibernate.secure.spi.JaccService jaccService
        end local 2 // boolean isSecurityEnabled
        end local 1 // org.hibernate.boot.registry.StandardServiceRegistryBuilder serviceRegistryBuilder
        end local 0 // org.hibernate.secure.spi.JaccIntegrator this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0    6     0                    this  Lorg/hibernate/secure/spi/JaccIntegrator;
            0    6     1  serviceRegistryBuilder  Lorg/hibernate/boot/registry/StandardServiceRegistryBuilder;
            1    6     2       isSecurityEnabled  Z
            4    6     3             jaccService  Lorg/hibernate/secure/spi/JaccService;
    MethodParameters:
                        Name  Flags
      serviceRegistryBuilder  

  public void integrate(org.hibernate.cfg.Configuration, org.hibernate.engine.spi.SessionFactoryImplementor, org.hibernate.service.spi.SessionFactoryServiceRegistry);
    descriptor: (Lorg/hibernate/cfg/Configuration;Lorg/hibernate/engine/spi/SessionFactoryImplementor;Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.hibernate.secure.spi.JaccIntegrator this
        start local 1 // org.hibernate.cfg.Configuration configuration
        start local 2 // org.hibernate.engine.spi.SessionFactoryImplementor sessionFactory
        start local 3 // org.hibernate.service.spi.SessionFactoryServiceRegistry serviceRegistry
         0: .line 81
            aload 0 /* this */
            aload 1 /* configuration */
            invokevirtual org.hibernate.cfg.Configuration.getProperties:()Ljava/util/Properties;
            aload 1 /* configuration */
            invokevirtual org.hibernate.cfg.Configuration.getJaccPermissionDeclarations:()Lorg/hibernate/secure/spi/JaccPermissionDeclarations;
            aload 3 /* serviceRegistry */
            invokevirtual org.hibernate.secure.spi.JaccIntegrator.doIntegration:(Ljava/util/Map;Lorg/hibernate/secure/spi/JaccPermissionDeclarations;Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;)V
         1: .line 82
            return
        end local 3 // org.hibernate.service.spi.SessionFactoryServiceRegistry serviceRegistry
        end local 2 // org.hibernate.engine.spi.SessionFactoryImplementor sessionFactory
        end local 1 // org.hibernate.cfg.Configuration configuration
        end local 0 // org.hibernate.secure.spi.JaccIntegrator this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/hibernate/secure/spi/JaccIntegrator;
            0    2     1    configuration  Lorg/hibernate/cfg/Configuration;
            0    2     2   sessionFactory  Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            0    2     3  serviceRegistry  Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;
    MethodParameters:
                 Name  Flags
      configuration    
      sessionFactory   
      serviceRegistry  

  private void doIntegration(java.util.Map, org.hibernate.secure.spi.JaccPermissionDeclarations, org.hibernate.service.spi.SessionFactoryServiceRegistry);
    descriptor: (Ljava/util/Map;Lorg/hibernate/secure/spi/JaccPermissionDeclarations;Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=9, args_size=4
        start local 0 // org.hibernate.secure.spi.JaccIntegrator this
        start local 1 // java.util.Map properties
        start local 2 // org.hibernate.secure.spi.JaccPermissionDeclarations permissionDeclarations
        start local 3 // org.hibernate.service.spi.SessionFactoryServiceRegistry serviceRegistry
         0: .line 88
            aload 1 /* properties */
            ldc "hibernate.jacc.enabled"
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            istore 4 /* isSecurityEnabled */
        start local 4 // boolean isSecurityEnabled
         1: .line 89
            iload 4 /* isSecurityEnabled */
            ifne 4
         2: .line 90
            getstatic org.hibernate.secure.spi.JaccIntegrator.log:Lorg/jboss/logging/Logger;
            ldc "Skipping JACC integration as it was not enabled"
            invokevirtual org.jboss.logging.Logger.debug:(Ljava/lang/Object;)V
         3: .line 91
            return
         4: .line 94
      StackMap locals: int
      StackMap stack:
            aload 1 /* properties */
            ldc "hibernate.jacc_context_id"
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.lang.String
            astore 5 /* contextId */
        start local 5 // java.lang.String contextId
         5: .line 95
            aload 5 /* contextId */
            ifnonnull 7
         6: .line 96
            new org.hibernate.secure.spi.IntegrationException
            dup
            ldc "JACC context id must be specified"
            invokespecial org.hibernate.secure.spi.IntegrationException.<init>:(Ljava/lang/String;)V
            athrow
         7: .line 99
      StackMap locals: java.lang.String
      StackMap stack:
            aload 3 /* serviceRegistry */
            ldc Lorg/hibernate/secure/spi/JaccService;
            invokeinterface org.hibernate.service.spi.SessionFactoryServiceRegistry.getService:(Ljava/lang/Class;)Lorg/hibernate/service/Service;
            checkcast org.hibernate.secure.spi.JaccService
            astore 6 /* jaccService */
        start local 6 // org.hibernate.secure.spi.JaccService jaccService
         8: .line 100
            aload 6 /* jaccService */
            ifnonnull 10
         9: .line 101
            new org.hibernate.secure.spi.IntegrationException
            dup
            ldc "JaccService was not set up"
            invokespecial org.hibernate.secure.spi.IntegrationException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 104
      StackMap locals: org.hibernate.secure.spi.JaccService
      StackMap stack:
            aload 2 /* permissionDeclarations */
            ifnull 15
        11: .line 105
            aload 2 /* permissionDeclarations */
            invokevirtual org.hibernate.secure.spi.JaccPermissionDeclarations.getPermissionDeclarations:()Ljava/lang/Iterable;
            invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
            astore 8
            goto 14
      StackMap locals: org.hibernate.secure.spi.JaccIntegrator java.util.Map org.hibernate.secure.spi.JaccPermissionDeclarations org.hibernate.service.spi.SessionFactoryServiceRegistry int java.lang.String org.hibernate.secure.spi.JaccService top java.util.Iterator
      StackMap stack:
        12: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.hibernate.secure.spi.GrantedPermission
            astore 7 /* declaration */
        start local 7 // org.hibernate.secure.spi.GrantedPermission declaration
        13: .line 106
            aload 6 /* jaccService */
            aload 7 /* declaration */
            invokeinterface org.hibernate.secure.spi.JaccService.addPermission:(Lorg/hibernate/secure/spi/GrantedPermission;)V
        end local 7 // org.hibernate.secure.spi.GrantedPermission declaration
        14: .line 105
      StackMap locals:
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 12
        15: .line 110
      StackMap locals: org.hibernate.secure.spi.JaccIntegrator java.util.Map org.hibernate.secure.spi.JaccPermissionDeclarations org.hibernate.service.spi.SessionFactoryServiceRegistry int java.lang.String org.hibernate.secure.spi.JaccService
      StackMap stack:
            aload 3 /* serviceRegistry */
            ldc Lorg/hibernate/event/service/spi/EventListenerRegistry;
            invokeinterface org.hibernate.service.spi.SessionFactoryServiceRegistry.getService:(Ljava/lang/Class;)Lorg/hibernate/service/Service;
            checkcast org.hibernate.event.service.spi.EventListenerRegistry
            astore 7 /* eventListenerRegistry */
        start local 7 // org.hibernate.event.service.spi.EventListenerRegistry eventListenerRegistry
        16: .line 111
            aload 7 /* eventListenerRegistry */
            getstatic org.hibernate.secure.spi.JaccIntegrator.DUPLICATION_STRATEGY:Lorg/hibernate/event/service/spi/DuplicationStrategy;
            invokeinterface org.hibernate.event.service.spi.EventListenerRegistry.addDuplicationStrategy:(Lorg/hibernate/event/service/spi/DuplicationStrategy;)V
        17: .line 113
            aload 7 /* eventListenerRegistry */
            getstatic org.hibernate.event.spi.EventType.PRE_DELETE:Lorg/hibernate/event/spi/EventType;
            iconst_1
            anewarray org.hibernate.event.spi.PreDeleteEventListener
            dup
            iconst_0
            new org.hibernate.secure.internal.JaccPreDeleteEventListener
            dup
            invokespecial org.hibernate.secure.internal.JaccPreDeleteEventListener.<init>:()V
            aastore
            invokeinterface org.hibernate.event.service.spi.EventListenerRegistry.prependListeners:(Lorg/hibernate/event/spi/EventType;[Ljava/lang/Object;)V
        18: .line 114
            aload 7 /* eventListenerRegistry */
            getstatic org.hibernate.event.spi.EventType.PRE_INSERT:Lorg/hibernate/event/spi/EventType;
            iconst_1
            anewarray org.hibernate.event.spi.PreInsertEventListener
            dup
            iconst_0
            new org.hibernate.secure.internal.JaccPreInsertEventListener
            dup
            invokespecial org.hibernate.secure.internal.JaccPreInsertEventListener.<init>:()V
            aastore
            invokeinterface org.hibernate.event.service.spi.EventListenerRegistry.prependListeners:(Lorg/hibernate/event/spi/EventType;[Ljava/lang/Object;)V
        19: .line 115
            aload 7 /* eventListenerRegistry */
            getstatic org.hibernate.event.spi.EventType.PRE_UPDATE:Lorg/hibernate/event/spi/EventType;
            iconst_1
            anewarray org.hibernate.event.spi.PreUpdateEventListener
            dup
            iconst_0
            new org.hibernate.secure.internal.JaccPreUpdateEventListener
            dup
            invokespecial org.hibernate.secure.internal.JaccPreUpdateEventListener.<init>:()V
            aastore
            invokeinterface org.hibernate.event.service.spi.EventListenerRegistry.prependListeners:(Lorg/hibernate/event/spi/EventType;[Ljava/lang/Object;)V
        20: .line 116
            aload 7 /* eventListenerRegistry */
            getstatic org.hibernate.event.spi.EventType.PRE_LOAD:Lorg/hibernate/event/spi/EventType;
            iconst_1
            anewarray org.hibernate.event.spi.PreLoadEventListener
            dup
            iconst_0
            new org.hibernate.secure.internal.JaccPreLoadEventListener
            dup
            invokespecial org.hibernate.secure.internal.JaccPreLoadEventListener.<init>:()V
            aastore
            invokeinterface org.hibernate.event.service.spi.EventListenerRegistry.prependListeners:(Lorg/hibernate/event/spi/EventType;[Ljava/lang/Object;)V
        21: .line 117
            return
        end local 7 // org.hibernate.event.service.spi.EventListenerRegistry eventListenerRegistry
        end local 6 // org.hibernate.secure.spi.JaccService jaccService
        end local 5 // java.lang.String contextId
        end local 4 // boolean isSecurityEnabled
        end local 3 // org.hibernate.service.spi.SessionFactoryServiceRegistry serviceRegistry
        end local 2 // org.hibernate.secure.spi.JaccPermissionDeclarations permissionDeclarations
        end local 1 // java.util.Map properties
        end local 0 // org.hibernate.secure.spi.JaccIntegrator this
      LocalVariableTable:
        Start  End  Slot                    Name  Signature
            0   22     0                    this  Lorg/hibernate/secure/spi/JaccIntegrator;
            0   22     1              properties  Ljava/util/Map;
            0   22     2  permissionDeclarations  Lorg/hibernate/secure/spi/JaccPermissionDeclarations;
            0   22     3         serviceRegistry  Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;
            1   22     4       isSecurityEnabled  Z
            5   22     5               contextId  Ljava/lang/String;
            8   22     6             jaccService  Lorg/hibernate/secure/spi/JaccService;
           13   14     7             declaration  Lorg/hibernate/secure/spi/GrantedPermission;
           16   22     7   eventListenerRegistry  Lorg/hibernate/event/service/spi/EventListenerRegistry;
    MethodParameters:
                        Name  Flags
      properties              
      permissionDeclarations  
      serviceRegistry         

  public void integrate(org.hibernate.metamodel.source.MetadataImplementor, org.hibernate.engine.spi.SessionFactoryImplementor, org.hibernate.service.spi.SessionFactoryServiceRegistry);
    descriptor: (Lorg/hibernate/metamodel/source/MetadataImplementor;Lorg/hibernate/engine/spi/SessionFactoryImplementor;Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.hibernate.secure.spi.JaccIntegrator this
        start local 1 // org.hibernate.metamodel.source.MetadataImplementor metadata
        start local 2 // org.hibernate.engine.spi.SessionFactoryImplementor sessionFactory
        start local 3 // org.hibernate.service.spi.SessionFactoryServiceRegistry serviceRegistry
         0: .line 124
            aload 0 /* this */
            aload 2 /* sessionFactory */
            invokeinterface org.hibernate.engine.spi.SessionFactoryImplementor.getProperties:()Ljava/util/Properties;
            aconst_null
            aload 3 /* serviceRegistry */
            invokevirtual org.hibernate.secure.spi.JaccIntegrator.doIntegration:(Ljava/util/Map;Lorg/hibernate/secure/spi/JaccPermissionDeclarations;Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;)V
         1: .line 125
            return
        end local 3 // org.hibernate.service.spi.SessionFactoryServiceRegistry serviceRegistry
        end local 2 // org.hibernate.engine.spi.SessionFactoryImplementor sessionFactory
        end local 1 // org.hibernate.metamodel.source.MetadataImplementor metadata
        end local 0 // org.hibernate.secure.spi.JaccIntegrator this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lorg/hibernate/secure/spi/JaccIntegrator;
            0    2     1         metadata  Lorg/hibernate/metamodel/source/MetadataImplementor;
            0    2     2   sessionFactory  Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            0    2     3  serviceRegistry  Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;
    MethodParameters:
                 Name  Flags
      metadata         
      sessionFactory   
      serviceRegistry  

  public void disintegrate(org.hibernate.engine.spi.SessionFactoryImplementor, org.hibernate.service.spi.SessionFactoryServiceRegistry);
    descriptor: (Lorg/hibernate/engine/spi/SessionFactoryImplementor;Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=3, args_size=3
        start local 0 // org.hibernate.secure.spi.JaccIntegrator this
        start local 1 // org.hibernate.engine.spi.SessionFactoryImplementor sessionFactory
        start local 2 // org.hibernate.service.spi.SessionFactoryServiceRegistry serviceRegistry
         0: .line 130
            return
        end local 2 // org.hibernate.service.spi.SessionFactoryServiceRegistry serviceRegistry
        end local 1 // org.hibernate.engine.spi.SessionFactoryImplementor sessionFactory
        end local 0 // org.hibernate.secure.spi.JaccIntegrator this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/hibernate/secure/spi/JaccIntegrator;
            0    1     1   sessionFactory  Lorg/hibernate/engine/spi/SessionFactoryImplementor;
            0    1     2  serviceRegistry  Lorg/hibernate/service/spi/SessionFactoryServiceRegistry;
    MethodParameters:
                 Name  Flags
      sessionFactory   
      serviceRegistry  
}
SourceFile: "JaccIntegrator.java"
NestMembers:
  org.hibernate.secure.spi.JaccIntegrator$1
InnerClasses:
  org.hibernate.secure.spi.JaccIntegrator$1