public class org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry<T>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  super_class: java.lang.Object
{
  protected java.util.List<org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory> interceptors;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;>;

  protected java.util.List<org.jboss.resteasy.core.interception.JaxrsInterceptorRegistryListener> listeners;
    descriptor: Ljava/util/List;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistryListener;>;

  protected org.jboss.resteasy.spi.ResteasyProviderFactory providerFactory;
    descriptor: Lorg/jboss/resteasy/spi/ResteasyProviderFactory;
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.Class<T> intf;
    descriptor: Ljava/lang/Class;
    flags: (0x0004) ACC_PROTECTED
    Signature: Ljava/lang/Class<TT;>;

  protected volatile T[] cachedPreMatch;
    descriptor: [Ljava/lang/Object;
    flags: (0x0044) ACC_PROTECTED, ACC_VOLATILE
    Signature: [TT;

  protected static java.util.List<java.lang.Class<? extends java.lang.annotation.Annotation>> getNameBound(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)Ljava/util/List;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=2, locals=6, args_size=1
        start local 0 // java.lang.Class declaring
         0: .line 51
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* nameBound */
        start local 1 // java.util.List nameBound
         1: .line 52
            aload 0 /* declaring */
            invokevirtual java.lang.Class.getAnnotations:()[Ljava/lang/annotation/Annotation;
            dup
            astore 5
            arraylength
            istore 4
            iconst_0
            istore 3
            goto 6
      StackMap locals: java.lang.Class java.util.List top int int java.lang.annotation.Annotation[]
      StackMap stack:
         2: aload 5
            iload 3
            aaload
            astore 2 /* annotation */
        start local 2 // java.lang.annotation.Annotation annotation
         3: .line 54
            aload 2 /* annotation */
            invokeinterface java.lang.annotation.Annotation.annotationType:()Ljava/lang/Class;
            ldc Ljavax/ws/rs/NameBinding;
            invokevirtual java.lang.Class.isAnnotationPresent:(Ljava/lang/Class;)Z
            ifeq 5
         4: .line 56
            aload 1 /* nameBound */
            aload 2 /* annotation */
            invokeinterface java.lang.annotation.Annotation.annotationType:()Ljava/lang/Class;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 2 // java.lang.annotation.Annotation annotation
         5: .line 52
      StackMap locals:
      StackMap stack:
            iinc 3 1
      StackMap locals:
      StackMap stack:
         6: iload 3
            iload 4
            if_icmplt 2
         7: .line 59
            aload 1 /* nameBound */
            areturn
        end local 1 // java.util.List nameBound
        end local 0 // java.lang.Class declaring
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0   declaring  Ljava/lang/Class<*>;
            1    8     1   nameBound  Ljava/util/List<Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;>;
            3    5     2  annotation  Ljava/lang/annotation/Annotation;
    Signature: (Ljava/lang/Class<*>;)Ljava/util/List<Ljava/lang/Class<+Ljava/lang/annotation/Annotation;>;>;
    MethodParameters:
           Name  Flags
      declaring  

  public static int getPriority(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)I
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.lang.Class declaring
         0: .line 64
            aload 0 /* declaring */
            ldc Ljavax/annotation/Priority;
            invokevirtual java.lang.Class.getAnnotation:(Ljava/lang/Class;)Ljava/lang/annotation/Annotation;
            checkcast javax.annotation.Priority
            astore 1 /* priority */
        start local 1 // javax.annotation.Priority priority
         1: .line 65
            aload 1 /* priority */
            ifnull 2
            aload 1 /* priority */
            invokeinterface javax.annotation.Priority.value:()I
            ireturn
         2: .line 66
      StackMap locals: javax.annotation.Priority
      StackMap stack:
            sipush 5000
            ireturn
        end local 1 // javax.annotation.Priority priority
        end local 0 // java.lang.Class declaring
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0  declaring  Ljava/lang/Class<*>;
            1    3     1   priority  Ljavax/annotation/Priority;
    Signature: (Ljava/lang/Class<*>;)I
    MethodParameters:
           Name  Flags
      declaring  

  public void <init>(org.jboss.resteasy.spi.ResteasyProviderFactory, java.lang.Class<T>);
    descriptor: (Lorg/jboss/resteasy/spi/ResteasyProviderFactory;Ljava/lang/Class;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // org.jboss.resteasy.spi.ResteasyProviderFactory providerFactory
        start local 2 // java.lang.Class intf
         0: .line 341
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 335
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArrayList
            dup
            invokespecial java.util.concurrent.CopyOnWriteArrayList.<init>:()V
            putfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.interceptors:Ljava/util/List;
         2: .line 336
            aload 0 /* this */
            new java.util.concurrent.CopyOnWriteArrayList
            dup
            invokespecial java.util.concurrent.CopyOnWriteArrayList.<init>:()V
            putfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.listeners:Ljava/util/List;
         3: .line 343
            aload 0 /* this */
            aload 1 /* providerFactory */
            putfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.providerFactory:Lorg/jboss/resteasy/spi/ResteasyProviderFactory;
         4: .line 344
            aload 0 /* this */
            aload 2 /* intf */
            putfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.intf:Ljava/lang/Class;
         5: .line 345
            return
        end local 2 // java.lang.Class intf
        end local 1 // org.jboss.resteasy.spi.ResteasyProviderFactory providerFactory
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    6     0             this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    6     1  providerFactory  Lorg/jboss/resteasy/spi/ResteasyProviderFactory;
            0    6     2             intf  Ljava/lang/Class<TT;>;
    Signature: (Lorg/jboss/resteasy/spi/ResteasyProviderFactory;Ljava/lang/Class<TT;>;)V
    MethodParameters:
                 Name  Flags
      providerFactory  
      intf             

  public org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry<T> clone(org.jboss.resteasy.spi.ResteasyProviderFactory);
    descriptor: (Lorg/jboss/resteasy/spi/ResteasyProviderFactory;)Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // org.jboss.resteasy.spi.ResteasyProviderFactory factory
         0: .line 349
            new org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
            dup
            aload 1 /* factory */
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.intf:Ljava/lang/Class;
            invokespecial org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.<init>:(Lorg/jboss/resteasy/spi/ResteasyProviderFactory;Ljava/lang/Class;)V
            astore 2 /* clone */
        start local 2 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry clone
         1: .line 350
            aload 2 /* clone */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.interceptors:Ljava/util/List;
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.interceptors:Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
         2: .line 351
            aload 2 /* clone */
            areturn
        end local 2 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry clone
        end local 1 // org.jboss.resteasy.spi.ResteasyProviderFactory factory
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    3     1  factory  Lorg/jboss/resteasy/spi/ResteasyProviderFactory;
            1    3     2    clone  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
    Signature: (Lorg/jboss/resteasy/spi/ResteasyProviderFactory;)Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
    MethodParameters:
         Name  Flags
      factory  

  public java.lang.Class<T> getIntf();
    descriptor: ()Ljava/lang/Class;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
         0: .line 356
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.intf:Ljava/lang/Class;
            areturn
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
    Signature: ()Ljava/lang/Class<TT;>;

  public java.util.List<org.jboss.resteasy.core.interception.JaxrsInterceptorRegistryListener> getListeners();
    descriptor: ()Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
         0: .line 394
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.listeners:Ljava/util/List;
            areturn
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
    Signature: ()Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistryListener;>;

  public T[] preMatch();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
         0: .line 399
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.cachedPreMatch:[Ljava/lang/Object;
            ifnonnull 9
         1: .line 401
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* matches */
        start local 1 // java.util.List matches
         2: .line 402
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.interceptors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 7
      StackMap locals: org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry java.util.List top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory
            astore 2 /* factory */
        start local 2 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory factory
         4: .line 404
            aload 2 /* factory */
            invokeinterface org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory.preMatch:()Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;
            astore 4 /* match */
        start local 4 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match match
         5: .line 405
            aload 4 /* match */
            ifnull 7
         6: .line 407
            aload 1 /* matches */
            aload 4 /* match */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match match
        end local 2 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory factory
         7: .line 402
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 410
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* matches */
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.createArray:(Ljava/util/List;)[Ljava/lang/Object;
            putfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.cachedPreMatch:[Ljava/lang/Object;
        end local 1 // java.util.List matches
         9: .line 412
      StackMap locals: org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
      StackMap stack:
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.cachedPreMatch:[Ljava/lang/Object;
            areturn
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            2    9     1  matches  Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;>;
            4    7     2  factory  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;
            5    7     4    match  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;
    Signature: ()[TT;

  public T[] postMatch(java.lang.Class, java.lang.reflect.AccessibleObject);
    descriptor: (Ljava/lang/Class;Ljava/lang/reflect/AccessibleObject;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // java.lang.Class declaring
        start local 2 // java.lang.reflect.AccessibleObject target
         0: .line 418
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 3 /* matches */
        start local 3 // java.util.List matches
         1: .line 419
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.interceptors:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 6
      StackMap locals: org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry java.lang.Class java.lang.reflect.AccessibleObject java.util.List top java.util.Iterator
      StackMap stack:
         2: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory
            astore 4 /* factory */
        start local 4 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory factory
         3: .line 421
            aload 4 /* factory */
            aload 1 /* declaring */
            aload 2 /* target */
            invokeinterface org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory.postMatch:(Ljava/lang/Class;Ljava/lang/reflect/AccessibleObject;)Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;
            astore 6 /* match */
        start local 6 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match match
         4: .line 422
            aload 6 /* match */
            ifnull 6
         5: .line 424
            aload 3 /* matches */
            aload 6 /* match */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        end local 6 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match match
        end local 4 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory factory
         6: .line 419
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         7: .line 427
            aload 0 /* this */
            aload 3 /* matches */
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.createArray:(Ljava/util/List;)[Ljava/lang/Object;
            areturn
        end local 3 // java.util.List matches
        end local 2 // java.lang.reflect.AccessibleObject target
        end local 1 // java.lang.Class declaring
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    8     0       this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    8     1  declaring  Ljava/lang/Class;
            0    8     2     target  Ljava/lang/reflect/AccessibleObject;
            1    8     3    matches  Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;>;
            3    6     4    factory  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;
            4    6     6      match  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;
    Signature: (Ljava/lang/Class;Ljava/lang/reflect/AccessibleObject;)[TT;
    MethodParameters:
           Name  Flags
      declaring  
      target     

  private T[] createArray(java.util.List<org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match>);
    descriptor: (Ljava/util/List;)[Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // java.util.List matches
         0: .line 432
            aload 0 /* this */
            aload 1 /* matches */
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.sort:(Ljava/util/List;)V
         1: .line 433
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.intf:Ljava/lang/Class;
            aload 1 /* matches */
            invokeinterface java.util.List.size:()I
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast java.lang.Object[]
            astore 2 /* array */
        start local 2 // java.lang.Object[] array
         2: .line 434
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 436
      StackMap locals: java.lang.Object[] int
      StackMap stack:
            aload 2 /* array */
            iload 3 /* i */
            aload 1 /* matches */
            iload 3 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match.interceptor:Ljava/lang/Object;
            aastore
         5: .line 434
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            aload 2 /* array */
            arraylength
            if_icmplt 4
        end local 3 // int i
         7: .line 438
            aload 2 /* array */
            areturn
        end local 2 // java.lang.Object[] array
        end local 1 // java.util.List matches
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    8     1  matches  Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;>;
            2    8     2    array  [Ljava/lang/Object;
            3    7     3        i  I
    Signature: (Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;>;)[TT;
    MethodParameters:
         Name  Flags
      matches  

  protected void sort(java.util.List<org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match>);
    descriptor: (Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // java.util.List matches
         0: .line 443
            aload 1 /* matches */
            new org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$AscendingPrecedenceComparator
            dup
            invokespecial org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$AscendingPrecedenceComparator.<init>:()V
            invokestatic java.util.Collections.sort:(Ljava/util/List;Ljava/util/Comparator;)V
         1: .line 444
            return
        end local 1 // java.util.List matches
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    2     1  matches  Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;>;
    Signature: (Ljava/util/List<Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$Match;>;)V
    MethodParameters:
         Name  Flags
      matches  

  public synchronized void register(org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory);
    descriptor: (Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory factory
         0: .line 448
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.interceptors:Ljava/util/List;
            aload 1 /* factory */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         1: .line 449
            aload 0 /* this */
            aconst_null
            putfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.cachedPreMatch:[Ljava/lang/Object;
         2: .line 450
            aload 0 /* this */
            getfield org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.listeners:Ljava/util/List;
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 3
            goto 5
      StackMap locals: org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory top java.util.Iterator
      StackMap stack:
         3: aload 3
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.jboss.resteasy.core.interception.JaxrsInterceptorRegistryListener
            astore 2 /* listener */
        start local 2 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistryListener listener
         4: .line 452
            aload 2 /* listener */
            aload 0 /* this */
            invokeinterface org.jboss.resteasy.core.interception.JaxrsInterceptorRegistryListener.registryUpdated:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry;)V
        end local 2 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistryListener listener
         5: .line 450
      StackMap locals:
      StackMap stack:
            aload 3
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 454
            return
        end local 1 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory factory
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    7     1   factory  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;
            4    5     2  listener  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistryListener;
    MethodParameters:
         Name  Flags
      factory  

  public synchronized void registerClass(java.lang.Class<? extends T>);
    descriptor: (Ljava/lang/Class;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // java.lang.Class declaring
         0: .line 458
            aload 0 /* this */
            new org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory
            dup
            aload 0 /* this */
            aload 1 /* declaring */
            invokespecial org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory.<init>:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry;Ljava/lang/Class;)V
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.register:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;)V
         1: .line 459
            return
        end local 1 // java.lang.Class declaring
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    2     1  declaring  Ljava/lang/Class<+TT;>;
    Signature: (Ljava/lang/Class<+TT;>;)V
    MethodParameters:
           Name  Flags
      declaring  

  public synchronized void registerClass(java.lang.Class<? extends T>, );
    descriptor: (Ljava/lang/Class;I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // java.lang.Class declaring
        start local 2 // int priority
         0: .line 463
            new org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory
            dup
            aload 0 /* this */
            aload 1 /* declaring */
            invokespecial org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory.<init>:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry;Ljava/lang/Class;)V
            astore 3 /* factory */
        start local 3 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory factory
         1: .line 464
            aload 3 /* factory */
            iload 2 /* priority */
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory.setOrder:(I)V
         2: .line 465
            aload 0 /* this */
            aload 3 /* factory */
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.register:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;)V
         3: .line 466
            return
        end local 3 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory factory
        end local 2 // int priority
        end local 1 // java.lang.Class declaring
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    4     1  declaring  Ljava/lang/Class<+TT;>;
            0    4     2   priority  I
            1    4     3    factory  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>.OnDemandInterceptorFactory;
    Signature: (Ljava/lang/Class<+TT;>;I)V
    MethodParameters:
           Name  Flags
      declaring  
      priority   

  public synchronized void registerSingleton();
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=6, locals=2, args_size=2
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // java.lang.Object interceptor
         0: .line 470
            aload 0 /* this */
            new org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory
            dup
            aload 0 /* this */
            aload 1 /* interceptor */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* interceptor */
            invokespecial org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory.<init>:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry;Ljava/lang/Class;Ljava/lang/Object;)V
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.register:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;)V
         1: .line 471
            return
        end local 1 // java.lang.Object interceptor
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    2     0         this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    2     1  interceptor  TT;
    Signature: (TT;)V
    MethodParameters:
             Name  Flags
      interceptor  

  public synchronized void registerSingleton(T, );
    descriptor: (Ljava/lang/Object;I)V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // java.lang.Object interceptor
        start local 2 // int priority
         0: .line 475
            new org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory
            dup
            aload 0 /* this */
            aload 1 /* interceptor */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aload 1 /* interceptor */
            invokespecial org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory.<init>:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry;Ljava/lang/Class;Ljava/lang/Object;)V
            astore 3 /* factory */
        start local 3 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory factory
         1: .line 476
            aload 3 /* factory */
            iload 2 /* priority */
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory.setOrder:(I)V
         2: .line 477
            aload 0 /* this */
            aload 3 /* factory */
            invokevirtual org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry.register:(Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry$InterceptorFactory;)V
         3: .line 478
            return
        end local 3 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory factory
        end local 2 // int priority
        end local 1 // java.lang.Object interceptor
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    4     1  interceptor  TT;
            0    4     2     priority  I
            1    4     3      factory  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>.SingletonInterceptorFactory;
    Signature: (TT;I)V
    MethodParameters:
             Name  Flags
      interceptor  
      priority     

  private java.lang.Class<?> getNonSyntheticClass(java.lang.Class<?>);
    descriptor: (Ljava/lang/Class;)Ljava/lang/Class;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
        start local 1 // java.lang.Class clazz
         0: .line 482
            goto 2
         1: .line 484
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            invokevirtual java.lang.Class.getSuperclass:()Ljava/lang/Class;
            astore 1 /* clazz */
         2: .line 482
      StackMap locals:
      StackMap stack:
            aload 1 /* clazz */
            invokevirtual java.lang.Class.isSynthetic:()Z
            ifne 1
         3: .line 486
            aload 1 /* clazz */
            areturn
        end local 1 // java.lang.Class clazz
        end local 0 // org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/jboss/resteasy/core/interception/JaxrsInterceptorRegistry<TT;>;
            0    4     1  clazz  Ljava/lang/Class<*>;
    Signature: (Ljava/lang/Class<*>;)Ljava/lang/Class<*>;
    MethodParameters:
       Name  Flags
      clazz  
}
Signature: <T:Ljava/lang/Object;>Ljava/lang/Object;
SourceFile: "JaxrsInterceptorRegistry.java"
NestMembers:
  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$AbstractInterceptorFactory  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$AbstractLegacyInterceptorFactory  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$AscendingPrecedenceComparator  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$DescendingPrecedenceComparator  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$LegacyPerMethodInterceptorFactory  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$LegacySingletonInterceptorFactory  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory  org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory
InnerClasses:
  public abstract AbstractInterceptorFactory = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$AbstractInterceptorFactory of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  public abstract AbstractLegacyInterceptorFactory = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$AbstractLegacyInterceptorFactory of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  public AscendingPrecedenceComparator = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$AscendingPrecedenceComparator of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  public DescendingPrecedenceComparator = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$DescendingPrecedenceComparator of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  public abstract InterceptorFactory = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$InterceptorFactory of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  protected LegacyPerMethodInterceptorFactory = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$LegacyPerMethodInterceptorFactory of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  protected LegacySingletonInterceptorFactory = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$LegacySingletonInterceptorFactory of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  public Match = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$Match of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  protected OnDemandInterceptorFactory = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$OnDemandInterceptorFactory of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry
  protected SingletonInterceptorFactory = org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry$SingletonInterceptorFactory of org.jboss.resteasy.core.interception.JaxrsInterceptorRegistry