public class org.eclipse.jetty.server.ServletAttributes implements org.eclipse.jetty.util.Attributes
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.server.ServletAttributes
  super_class: java.lang.Object
{
  private final org.eclipse.jetty.util.Attributes _attributes;
    descriptor: Lorg/eclipse/jetty/util/Attributes;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private org.eclipse.jetty.server.AsyncAttributes _asyncAttributes;
    descriptor: Lorg/eclipse/jetty/server/AsyncAttributes;
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.ServletAttributes this
         0: .line 33
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 35
            aload 0 /* this */
            new org.eclipse.jetty.util.AttributesMap
            dup
            invokespecial org.eclipse.jetty.util.AttributesMap.<init>:()V
            putfield org.eclipse.jetty.server.ServletAttributes._attributes:Lorg/eclipse/jetty/util/Attributes;
         2: .line 33
            return
        end local 0 // org.eclipse.jetty.server.ServletAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/server/ServletAttributes;

  public void setAsyncAttributes(java.lang.String, java.lang.String, java.lang.String, org.eclipse.jetty.server.ServletPathMapping, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/eclipse/jetty/server/ServletPathMapping;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=6, args_size=6
        start local 0 // org.eclipse.jetty.server.ServletAttributes this
        start local 1 // java.lang.String requestURI
        start local 2 // java.lang.String contextPath
        start local 3 // java.lang.String pathInContext
        start local 4 // org.eclipse.jetty.server.ServletPathMapping servletPathMapping
        start local 5 // java.lang.String queryString
         0: .line 40
            aload 0 /* this */
            new org.eclipse.jetty.server.AsyncAttributes
            dup
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ServletAttributes._attributes:Lorg/eclipse/jetty/util/Attributes;
            aload 1 /* requestURI */
            aload 2 /* contextPath */
            aload 3 /* pathInContext */
            aload 4 /* servletPathMapping */
            aload 5 /* queryString */
            invokespecial org.eclipse.jetty.server.AsyncAttributes.<init>:(Lorg/eclipse/jetty/util/Attributes;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/eclipse/jetty/server/ServletPathMapping;Ljava/lang/String;)V
            putfield org.eclipse.jetty.server.ServletAttributes._asyncAttributes:Lorg/eclipse/jetty/server/AsyncAttributes;
         1: .line 41
            return
        end local 5 // java.lang.String queryString
        end local 4 // org.eclipse.jetty.server.ServletPathMapping servletPathMapping
        end local 3 // java.lang.String pathInContext
        end local 2 // java.lang.String contextPath
        end local 1 // java.lang.String requestURI
        end local 0 // org.eclipse.jetty.server.ServletAttributes this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/eclipse/jetty/server/ServletAttributes;
            0    2     1          requestURI  Ljava/lang/String;
            0    2     2         contextPath  Ljava/lang/String;
            0    2     3       pathInContext  Ljava/lang/String;
            0    2     4  servletPathMapping  Lorg/eclipse/jetty/server/ServletPathMapping;
            0    2     5         queryString  Ljava/lang/String;
    MethodParameters:
                    Name  Flags
      requestURI          
      contextPath         
      pathInContext       
      servletPathMapping  
      queryString         

  private org.eclipse.jetty.util.Attributes getAttributes();
    descriptor: ()Lorg/eclipse/jetty/util/Attributes;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.ServletAttributes this
         0: .line 45
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ServletAttributes._asyncAttributes:Lorg/eclipse/jetty/server/AsyncAttributes;
            ifnonnull 1
            aload 0 /* this */
            getfield org.eclipse.jetty.server.ServletAttributes._attributes:Lorg/eclipse/jetty/util/Attributes;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.eclipse.jetty.server.ServletAttributes._asyncAttributes:Lorg/eclipse/jetty/server/AsyncAttributes;
      StackMap locals:
      StackMap stack: org.eclipse.jetty.util.Attributes
         2: areturn
        end local 0 // org.eclipse.jetty.server.ServletAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/server/ServletAttributes;

  public void removeAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.ServletAttributes this
        start local 1 // java.lang.String name
         0: .line 51
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ServletAttributes.getAttributes:()Lorg/eclipse/jetty/util/Attributes;
            aload 1 /* name */
            invokeinterface org.eclipse.jetty.util.Attributes.removeAttribute:(Ljava/lang/String;)V
         1: .line 52
            return
        end local 1 // java.lang.String name
        end local 0 // org.eclipse.jetty.server.ServletAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/server/ServletAttributes;
            0    2     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public void setAttribute(java.lang.String, java.lang.Object);
    descriptor: (Ljava/lang/String;Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.server.ServletAttributes this
        start local 1 // java.lang.String name
        start local 2 // java.lang.Object attribute
         0: .line 57
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ServletAttributes.getAttributes:()Lorg/eclipse/jetty/util/Attributes;
            aload 1 /* name */
            aload 2 /* attribute */
            invokeinterface org.eclipse.jetty.util.Attributes.setAttribute:(Ljava/lang/String;Ljava/lang/Object;)V
         1: .line 58
            return
        end local 2 // java.lang.Object attribute
        end local 1 // java.lang.String name
        end local 0 // org.eclipse.jetty.server.ServletAttributes this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/eclipse/jetty/server/ServletAttributes;
            0    2     1       name  Ljava/lang/String;
            0    2     2  attribute  Ljava/lang/Object;
    MethodParameters:
           Name  Flags
      name       
      attribute  

  public java.lang.Object getAttribute(java.lang.String);
    descriptor: (Ljava/lang/String;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.server.ServletAttributes this
        start local 1 // java.lang.String name
         0: .line 63
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ServletAttributes.getAttributes:()Lorg/eclipse/jetty/util/Attributes;
            aload 1 /* name */
            invokeinterface org.eclipse.jetty.util.Attributes.getAttribute:(Ljava/lang/String;)Ljava/lang/Object;
            areturn
        end local 1 // java.lang.String name
        end local 0 // org.eclipse.jetty.server.ServletAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/ServletAttributes;
            0    1     1  name  Ljava/lang/String;
    MethodParameters:
      Name  Flags
      name  

  public java.util.Set<java.lang.String> getAttributeNameSet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.ServletAttributes this
         0: .line 69
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ServletAttributes.getAttributes:()Lorg/eclipse/jetty/util/Attributes;
            invokeinterface org.eclipse.jetty.util.Attributes.getAttributeNameSet:()Ljava/util/Set;
            areturn
        end local 0 // org.eclipse.jetty.server.ServletAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/server/ServletAttributes;
    Signature: ()Ljava/util/Set<Ljava/lang/String;>;

  public void clearAttributes();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.server.ServletAttributes this
         0: .line 75
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.server.ServletAttributes.getAttributes:()Lorg/eclipse/jetty/util/Attributes;
            invokeinterface org.eclipse.jetty.util.Attributes.clearAttributes:()V
         1: .line 76
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.server.ServletAttributes._asyncAttributes:Lorg/eclipse/jetty/server/AsyncAttributes;
         2: .line 77
            return
        end local 0 // org.eclipse.jetty.server.ServletAttributes this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/server/ServletAttributes;
}
SourceFile: "ServletAttributes.java"