public abstract class org.glassfish.jersey.process.internal.RequestScope
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.glassfish.jersey.process.internal.RequestScope
  super_class: java.lang.Object
{
  private static final org.glassfish.jersey.internal.util.ExtendedLogger logger;
    descriptor: Lorg/glassfish/jersey/internal/util/ExtendedLogger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final java.lang.ThreadLocal<org.glassfish.jersey.process.internal.RequestContext> currentRequestContext;
    descriptor: Ljava/lang/ThreadLocal;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/ThreadLocal<Lorg/glassfish/jersey/process/internal/RequestContext;>;

  private volatile boolean isActive;
    descriptor: Z
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 105
            new org.glassfish.jersey.internal.util.ExtendedLogger
            dup
            ldc Lorg/glassfish/jersey/process/internal/RequestScope;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            invokestatic java.util.logging.Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger;
            getstatic java.util.logging.Level.FINEST:Ljava/util/logging/Level;
            invokespecial org.glassfish.jersey.internal.util.ExtendedLogger.<init>:(Ljava/util/logging/Logger;Ljava/util/logging/Level;)V
            putstatic org.glassfish.jersey.process.internal.RequestScope.logger:Lorg/glassfish/jersey/internal/util/ExtendedLogger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
         0: .line 103
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 110
            aload 0 /* this */
            new java.lang.ThreadLocal
            dup
            invokespecial java.lang.ThreadLocal.<init>:()V
            putfield org.glassfish.jersey.process.internal.RequestScope.currentRequestContext:Ljava/lang/ThreadLocal;
         2: .line 111
            aload 0 /* this */
            iconst_1
            putfield org.glassfish.jersey.process.internal.RequestScope.isActive:Z
         3: .line 103
            return
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/glassfish/jersey/process/internal/RequestScope;

  public boolean isActive();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
         0: .line 114
            aload 0 /* this */
            getfield org.glassfish.jersey.process.internal.RequestScope.isActive:Z
            ireturn
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/jersey/process/internal/RequestScope;

  public void shutdown();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
         0: .line 118
            aload 0 /* this */
            iconst_0
            putfield org.glassfish.jersey.process.internal.RequestScope.isActive:Z
         1: .line 119
            return
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/jersey/process/internal/RequestScope;

  public org.glassfish.jersey.process.internal.RequestContext referenceCurrent();
    descriptor: ()Lorg/glassfish/jersey/process/internal/RequestContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
         0: .line 141
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.current:()Lorg/glassfish/jersey/process/internal/RequestContext;
            invokeinterface org.glassfish.jersey.process.internal.RequestContext.getReference:()Lorg/glassfish/jersey/process/internal/RequestContext;
            areturn
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/glassfish/jersey/process/internal/RequestScope;
    Exceptions:
      throws java.lang.IllegalStateException

  public org.glassfish.jersey.process.internal.RequestContext current();
    descriptor: ()Lorg/glassfish/jersey/process/internal/RequestContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
         0: .line 150
            aload 0 /* this */
            getfield org.glassfish.jersey.process.internal.RequestScope.isActive:Z
            ldc "Request scope has been already shut down."
            invokestatic org.glassfish.jersey.internal.guava.Preconditions.checkState:(ZLjava/lang/Object;)V
         1: .line 152
            aload 0 /* this */
            getfield org.glassfish.jersey.process.internal.RequestScope.currentRequestContext:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast org.glassfish.jersey.process.internal.RequestContext
            astore 1 /* scopeInstance */
        start local 1 // org.glassfish.jersey.process.internal.RequestContext scopeInstance
         2: .line 153
            aload 1 /* scopeInstance */
            ifnull 3
            iconst_1
            goto 4
      StackMap locals: org.glassfish.jersey.process.internal.RequestContext
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: ldc "Not inside a request scope."
            invokestatic org.glassfish.jersey.internal.guava.Preconditions.checkState:(ZLjava/lang/Object;)V
         5: .line 155
            aload 1 /* scopeInstance */
            areturn
        end local 1 // org.glassfish.jersey.process.internal.RequestContext scopeInstance
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/glassfish/jersey/process/internal/RequestScope;
            2    6     1  scopeInstance  Lorg/glassfish/jersey/process/internal/RequestContext;

  private org.glassfish.jersey.process.internal.RequestContext retrieveCurrent();
    descriptor: ()Lorg/glassfish/jersey/process/internal/RequestContext;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
         0: .line 159
            aload 0 /* this */
            getfield org.glassfish.jersey.process.internal.RequestScope.isActive:Z
            ldc "Request scope has been already shut down."
            invokestatic org.glassfish.jersey.internal.guava.Preconditions.checkState:(ZLjava/lang/Object;)V
         1: .line 160
            aload 0 /* this */
            getfield org.glassfish.jersey.process.internal.RequestScope.currentRequestContext:Ljava/lang/ThreadLocal;
            invokevirtual java.lang.ThreadLocal.get:()Ljava/lang/Object;
            checkcast org.glassfish.jersey.process.internal.RequestContext
            areturn
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/glassfish/jersey/process/internal/RequestScope;

  public org.glassfish.jersey.process.internal.RequestContext suspendCurrent();
    descriptor: ()Lorg/glassfish/jersey/process/internal/RequestContext;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
         0: .line 184
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.retrieveCurrent:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 1 /* context */
        start local 1 // org.glassfish.jersey.process.internal.RequestContext context
         1: .line 185
            aload 1 /* context */
            ifnonnull 3
         2: .line 186
            aconst_null
            areturn
         3: .line 189
      StackMap locals: org.glassfish.jersey.process.internal.RequestContext
      StackMap stack:
            aload 1 /* context */
            invokeinterface org.glassfish.jersey.process.internal.RequestContext.getReference:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 2 /* referencedContext */
        start local 2 // org.glassfish.jersey.process.internal.RequestContext referencedContext
         4: .line 190
            aload 0 /* this */
            aload 2 /* referencedContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.suspend:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         5: .line 191
            aload 2 /* referencedContext */
            astore 4
         6: .line 193
            getstatic org.glassfish.jersey.process.internal.RequestScope.logger:Lorg/glassfish/jersey/internal/util/ExtendedLogger;
            ldc "Returned a new reference of the request scope context {0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* context */
            aastore
            invokevirtual org.glassfish.jersey.internal.util.ExtendedLogger.debugLog:(Ljava/lang/String;[Ljava/lang/Object;)V
         7: .line 191
            aload 4
            areturn
        end local 2 // org.glassfish.jersey.process.internal.RequestContext referencedContext
         8: .line 192
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 3
         9: .line 193
            getstatic org.glassfish.jersey.process.internal.RequestScope.logger:Lorg/glassfish/jersey/internal/util/ExtendedLogger;
            ldc "Returned a new reference of the request scope context {0}"
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            aload 1 /* context */
            aastore
            invokevirtual org.glassfish.jersey.internal.util.ExtendedLogger.debugLog:(Ljava/lang/String;[Ljava/lang/Object;)V
        10: .line 194
            aload 3
            athrow
        end local 1 // org.glassfish.jersey.process.internal.RequestContext context
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0   11     0               this  Lorg/glassfish/jersey/process/internal/RequestScope;
            1   11     1            context  Lorg/glassfish/jersey/process/internal/RequestContext;
            4    8     2  referencedContext  Lorg/glassfish/jersey/process/internal/RequestContext;
      Exception table:
        from    to  target  type
           3     6       8  any

  protected void suspend(org.glassfish.jersey.process.internal.RequestContext);
    descriptor: (Lorg/glassfish/jersey/process/internal/RequestContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // org.glassfish.jersey.process.internal.RequestContext context
         0: .line 204
            return
        end local 1 // org.glassfish.jersey.process.internal.RequestContext context
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0    1     1  context  Lorg/glassfish/jersey/process/internal/RequestContext;
    MethodParameters:
         Name  Flags
      context  

  public abstract org.glassfish.jersey.process.internal.RequestContext createContext();
    descriptor: ()Lorg/glassfish/jersey/process/internal/RequestContext;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  protected void activate(org.glassfish.jersey.process.internal.RequestContext, org.glassfish.jersey.process.internal.RequestContext);
    descriptor: (Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/process/internal/RequestContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // org.glassfish.jersey.process.internal.RequestContext context
        start local 2 // org.glassfish.jersey.process.internal.RequestContext oldContext
         0: .line 227
            aload 0 /* this */
            getfield org.glassfish.jersey.process.internal.RequestScope.isActive:Z
            ldc "Request scope has been already shut down."
            invokestatic org.glassfish.jersey.internal.guava.Preconditions.checkState:(ZLjava/lang/Object;)V
         1: .line 228
            aload 0 /* this */
            getfield org.glassfish.jersey.process.internal.RequestScope.currentRequestContext:Ljava/lang/ThreadLocal;
            aload 1 /* context */
            invokevirtual java.lang.ThreadLocal.set:(Ljava/lang/Object;)V
         2: .line 229
            return
        end local 2 // org.glassfish.jersey.process.internal.RequestContext oldContext
        end local 1 // org.glassfish.jersey.process.internal.RequestContext context
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0    3     1     context  Lorg/glassfish/jersey/process/internal/RequestContext;
            0    3     2  oldContext  Lorg/glassfish/jersey/process/internal/RequestContext;
    MethodParameters:
            Name  Flags
      context     
      oldContext  

  protected void resume(org.glassfish.jersey.process.internal.RequestContext);
    descriptor: (Lorg/glassfish/jersey/process/internal/RequestContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // org.glassfish.jersey.process.internal.RequestContext context
         0: .line 237
            aload 0 /* this */
            getfield org.glassfish.jersey.process.internal.RequestScope.currentRequestContext:Ljava/lang/ThreadLocal;
            aload 1 /* context */
            invokevirtual java.lang.ThreadLocal.set:(Ljava/lang/Object;)V
         1: .line 238
            return
        end local 1 // org.glassfish.jersey.process.internal.RequestContext context
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0    2     1  context  Lorg/glassfish/jersey/process/internal/RequestContext;
    MethodParameters:
         Name  Flags
      context  

  protected void release(org.glassfish.jersey.process.internal.RequestContext);
    descriptor: (Lorg/glassfish/jersey/process/internal/RequestContext;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // org.glassfish.jersey.process.internal.RequestContext context
         0: .line 246
            aload 1 /* context */
            invokeinterface org.glassfish.jersey.process.internal.RequestContext.release:()V
         1: .line 247
            return
        end local 1 // org.glassfish.jersey.process.internal.RequestContext context
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0    2     1  context  Lorg/glassfish/jersey/process/internal/RequestContext;
    MethodParameters:
         Name  Flags
      context  

  public void runInScope(org.glassfish.jersey.process.internal.RequestContext, java.lang.Runnable);
    descriptor: (Lorg/glassfish/jersey/process/internal/RequestContext;Ljava/lang/Runnable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // org.glassfish.jersey.process.internal.RequestContext context
        start local 2 // java.lang.Runnable task
         0: .line 262
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.retrieveCurrent:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 3 /* oldContext */
        start local 3 // org.glassfish.jersey.process.internal.RequestContext oldContext
         1: .line 264
            aload 0 /* this */
            aload 1 /* context */
            invokeinterface org.glassfish.jersey.process.internal.RequestContext.getReference:()Lorg/glassfish/jersey/process/internal/RequestContext;
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.activate:(Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/process/internal/RequestContext;)V
         2: .line 265
            aload 2 /* task */
            invokestatic org.glassfish.jersey.internal.Errors.process:(Ljava/lang/Runnable;)V
         3: .line 266
            goto 8
      StackMap locals: org.glassfish.jersey.process.internal.RequestScope org.glassfish.jersey.process.internal.RequestContext java.lang.Runnable org.glassfish.jersey.process.internal.RequestContext
      StackMap stack: java.lang.Throwable
         4: astore 4
         5: .line 267
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         6: .line 268
            aload 0 /* this */
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         7: .line 269
            aload 4
            athrow
         8: .line 267
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         9: .line 268
            aload 0 /* this */
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
        10: .line 270
            return
        end local 3 // org.glassfish.jersey.process.internal.RequestContext oldContext
        end local 2 // java.lang.Runnable task
        end local 1 // org.glassfish.jersey.process.internal.RequestContext context
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0   11     1     context  Lorg/glassfish/jersey/process/internal/RequestContext;
            0   11     2        task  Ljava/lang/Runnable;
            1   11     3  oldContext  Lorg/glassfish/jersey/process/internal/RequestContext;
      Exception table:
        from    to  target  type
           1     4       4  any
    MethodParameters:
         Name  Flags
      context  
      task     

  public void runInScope(java.lang.Runnable);
    descriptor: (Ljava/lang/Runnable;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // java.lang.Runnable task
         0: .line 284
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.retrieveCurrent:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 2 /* oldContext */
        start local 2 // org.glassfish.jersey.process.internal.RequestContext oldContext
         1: .line 285
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.createContext:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 3 /* context */
        start local 3 // org.glassfish.jersey.process.internal.RequestContext context
         2: .line 287
            aload 0 /* this */
            aload 3 /* context */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.activate:(Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/process/internal/RequestContext;)V
         3: .line 288
            aload 1 /* task */
            invokestatic org.glassfish.jersey.internal.Errors.process:(Ljava/lang/Runnable;)V
         4: .line 289
            goto 9
      StackMap locals: org.glassfish.jersey.process.internal.RequestScope java.lang.Runnable org.glassfish.jersey.process.internal.RequestContext org.glassfish.jersey.process.internal.RequestContext
      StackMap stack: java.lang.Throwable
         5: astore 4
         6: .line 290
            aload 0 /* this */
            aload 3 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         7: .line 291
            aload 0 /* this */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         8: .line 292
            aload 4
            athrow
         9: .line 290
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
        10: .line 291
            aload 0 /* this */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
        11: .line 293
            return
        end local 3 // org.glassfish.jersey.process.internal.RequestContext context
        end local 2 // org.glassfish.jersey.process.internal.RequestContext oldContext
        end local 1 // java.lang.Runnable task
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0   12     1        task  Ljava/lang/Runnable;
            1   12     2  oldContext  Lorg/glassfish/jersey/process/internal/RequestContext;
            2   12     3     context  Lorg/glassfish/jersey/process/internal/RequestContext;
      Exception table:
        from    to  target  type
           2     5       5  any
    MethodParameters:
      Name  Flags
      task  

  public <T> T runInScope(org.glassfish.jersey.process.internal.RequestContext, java.util.concurrent.Callable<T>);
    descriptor: (Lorg/glassfish/jersey/process/internal/RequestContext;Ljava/util/concurrent/Callable;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // org.glassfish.jersey.process.internal.RequestContext context
        start local 2 // java.util.concurrent.Callable task
         0: .line 311
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.retrieveCurrent:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 3 /* oldContext */
        start local 3 // org.glassfish.jersey.process.internal.RequestContext oldContext
         1: .line 313
            aload 0 /* this */
            aload 1 /* context */
            invokeinterface org.glassfish.jersey.process.internal.RequestContext.getReference:()Lorg/glassfish/jersey/process/internal/RequestContext;
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.activate:(Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/process/internal/RequestContext;)V
         2: .line 314
            aload 2 /* task */
            invokestatic org.glassfish.jersey.internal.Errors.process:(Ljava/util/concurrent/Callable;)Ljava/lang/Object;
            astore 5
         3: .line 316
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         4: .line 317
            aload 0 /* this */
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         5: .line 314
            aload 5
            areturn
         6: .line 315
      StackMap locals: org.glassfish.jersey.process.internal.RequestScope org.glassfish.jersey.process.internal.RequestContext java.util.concurrent.Callable org.glassfish.jersey.process.internal.RequestContext
      StackMap stack: java.lang.Throwable
            astore 4
         7: .line 316
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         8: .line 317
            aload 0 /* this */
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         9: .line 318
            aload 4
            athrow
        end local 3 // org.glassfish.jersey.process.internal.RequestContext oldContext
        end local 2 // java.util.concurrent.Callable task
        end local 1 // org.glassfish.jersey.process.internal.RequestContext context
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0   10     1     context  Lorg/glassfish/jersey/process/internal/RequestContext;
            0   10     2        task  Ljava/util/concurrent/Callable<TT;>;
            1   10     3  oldContext  Lorg/glassfish/jersey/process/internal/RequestContext;
      Exception table:
        from    to  target  type
           1     3       6  any
    Exceptions:
      throws java.lang.Exception
    Signature: <T:Ljava/lang/Object;>(Lorg/glassfish/jersey/process/internal/RequestContext;Ljava/util/concurrent/Callable<TT;>;)TT;
    MethodParameters:
         Name  Flags
      context  
      task     

  public <T> T runInScope(java.util.concurrent.Callable<T>);
    descriptor: (Ljava/util/concurrent/Callable;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // java.util.concurrent.Callable task
         0: .line 336
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.retrieveCurrent:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 2 /* oldContext */
        start local 2 // org.glassfish.jersey.process.internal.RequestContext oldContext
         1: .line 337
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.createContext:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 3 /* context */
        start local 3 // org.glassfish.jersey.process.internal.RequestContext context
         2: .line 339
            aload 0 /* this */
            aload 3 /* context */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.activate:(Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/process/internal/RequestContext;)V
         3: .line 340
            aload 1 /* task */
            invokestatic org.glassfish.jersey.internal.Errors.process:(Ljava/util/concurrent/Callable;)Ljava/lang/Object;
            astore 5
         4: .line 342
            aload 0 /* this */
            aload 3 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         5: .line 343
            aload 0 /* this */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         6: .line 340
            aload 5
            areturn
         7: .line 341
      StackMap locals: org.glassfish.jersey.process.internal.RequestScope java.util.concurrent.Callable org.glassfish.jersey.process.internal.RequestContext org.glassfish.jersey.process.internal.RequestContext
      StackMap stack: java.lang.Throwable
            astore 4
         8: .line 342
            aload 0 /* this */
            aload 3 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         9: .line 343
            aload 0 /* this */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
        10: .line 344
            aload 4
            athrow
        end local 3 // org.glassfish.jersey.process.internal.RequestContext context
        end local 2 // org.glassfish.jersey.process.internal.RequestContext oldContext
        end local 1 // java.util.concurrent.Callable task
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0   11     1        task  Ljava/util/concurrent/Callable<TT;>;
            1   11     2  oldContext  Lorg/glassfish/jersey/process/internal/RequestContext;
            2   11     3     context  Lorg/glassfish/jersey/process/internal/RequestContext;
      Exception table:
        from    to  target  type
           2     4       7  any
    Exceptions:
      throws java.lang.Exception
    Signature: <T:Ljava/lang/Object;>(Ljava/util/concurrent/Callable<TT;>;)TT;
    MethodParameters:
      Name  Flags
      task  

  public <T> T runInScope(org.glassfish.jersey.process.internal.RequestContext, org.glassfish.jersey.internal.util.Producer<T>);
    descriptor: (Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/internal/util/Producer;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // org.glassfish.jersey.process.internal.RequestContext context
        start local 2 // org.glassfish.jersey.internal.util.Producer task
         0: .line 362
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.retrieveCurrent:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 3 /* oldContext */
        start local 3 // org.glassfish.jersey.process.internal.RequestContext oldContext
         1: .line 364
            aload 0 /* this */
            aload 1 /* context */
            invokeinterface org.glassfish.jersey.process.internal.RequestContext.getReference:()Lorg/glassfish/jersey/process/internal/RequestContext;
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.activate:(Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/process/internal/RequestContext;)V
         2: .line 365
            aload 2 /* task */
            invokestatic org.glassfish.jersey.internal.Errors.process:(Lorg/glassfish/jersey/internal/util/Producer;)Ljava/lang/Object;
            astore 5
         3: .line 367
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         4: .line 368
            aload 0 /* this */
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         5: .line 365
            aload 5
            areturn
         6: .line 366
      StackMap locals: org.glassfish.jersey.process.internal.RequestScope org.glassfish.jersey.process.internal.RequestContext org.glassfish.jersey.internal.util.Producer org.glassfish.jersey.process.internal.RequestContext
      StackMap stack: java.lang.Throwable
            astore 4
         7: .line 367
            aload 0 /* this */
            aload 1 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         8: .line 368
            aload 0 /* this */
            aload 3 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         9: .line 369
            aload 4
            athrow
        end local 3 // org.glassfish.jersey.process.internal.RequestContext oldContext
        end local 2 // org.glassfish.jersey.internal.util.Producer task
        end local 1 // org.glassfish.jersey.process.internal.RequestContext context
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   10     0        this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0   10     1     context  Lorg/glassfish/jersey/process/internal/RequestContext;
            0   10     2        task  Lorg/glassfish/jersey/internal/util/Producer<TT;>;
            1   10     3  oldContext  Lorg/glassfish/jersey/process/internal/RequestContext;
      Exception table:
        from    to  target  type
           1     3       6  any
    Signature: <T:Ljava/lang/Object;>(Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/internal/util/Producer<TT;>;)TT;
    MethodParameters:
         Name  Flags
      context  
      task     

  public <T> T runInScope(org.glassfish.jersey.internal.util.Producer<T>);
    descriptor: (Lorg/glassfish/jersey/internal/util/Producer;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.glassfish.jersey.process.internal.RequestScope this
        start local 1 // org.glassfish.jersey.internal.util.Producer task
         0: .line 386
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.retrieveCurrent:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 2 /* oldContext */
        start local 2 // org.glassfish.jersey.process.internal.RequestContext oldContext
         1: .line 387
            aload 0 /* this */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.createContext:()Lorg/glassfish/jersey/process/internal/RequestContext;
            astore 3 /* context */
        start local 3 // org.glassfish.jersey.process.internal.RequestContext context
         2: .line 389
            aload 0 /* this */
            aload 3 /* context */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.activate:(Lorg/glassfish/jersey/process/internal/RequestContext;Lorg/glassfish/jersey/process/internal/RequestContext;)V
         3: .line 390
            aload 1 /* task */
            invokestatic org.glassfish.jersey.internal.Errors.process:(Lorg/glassfish/jersey/internal/util/Producer;)Ljava/lang/Object;
            astore 5
         4: .line 392
            aload 0 /* this */
            aload 3 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         5: .line 393
            aload 0 /* this */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         6: .line 390
            aload 5
            areturn
         7: .line 391
      StackMap locals: org.glassfish.jersey.process.internal.RequestScope org.glassfish.jersey.internal.util.Producer org.glassfish.jersey.process.internal.RequestContext org.glassfish.jersey.process.internal.RequestContext
      StackMap stack: java.lang.Throwable
            astore 4
         8: .line 392
            aload 0 /* this */
            aload 3 /* context */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.release:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
         9: .line 393
            aload 0 /* this */
            aload 2 /* oldContext */
            invokevirtual org.glassfish.jersey.process.internal.RequestScope.resume:(Lorg/glassfish/jersey/process/internal/RequestContext;)V
        10: .line 394
            aload 4
            athrow
        end local 3 // org.glassfish.jersey.process.internal.RequestContext context
        end local 2 // org.glassfish.jersey.process.internal.RequestContext oldContext
        end local 1 // org.glassfish.jersey.internal.util.Producer task
        end local 0 // org.glassfish.jersey.process.internal.RequestScope this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   11     0        this  Lorg/glassfish/jersey/process/internal/RequestScope;
            0   11     1        task  Lorg/glassfish/jersey/internal/util/Producer<TT;>;
            1   11     2  oldContext  Lorg/glassfish/jersey/process/internal/RequestContext;
            2   11     3     context  Lorg/glassfish/jersey/process/internal/RequestContext;
      Exception table:
        from    to  target  type
           2     4       7  any
    Signature: <T:Ljava/lang/Object;>(Lorg/glassfish/jersey/internal/util/Producer<TT;>;)TT;
    MethodParameters:
      Name  Flags
      task  
}
SourceFile: "RequestScope.java"
NestMembers:
  org.glassfish.jersey.process.internal.RequestScope$RequestScopeConfigurator
InnerClasses:
  public RequestScopeConfigurator = org.glassfish.jersey.process.internal.RequestScope$RequestScopeConfigurator of org.glassfish.jersey.process.internal.RequestScope