public class org.eclipse.jetty.util.resource.URLResource extends org.eclipse.jetty.util.resource.Resource
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jetty.util.resource.URLResource
  super_class: org.eclipse.jetty.util.resource.Resource
{
  private static final org.eclipse.jetty.util.log.Logger LOG;
    descriptor: Lorg/eclipse/jetty/util/log/Logger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  protected final java.net.URL _url;
    descriptor: Ljava/net/URL;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.lang.String _urlString;
    descriptor: Ljava/lang/String;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected java.net.URLConnection _connection;
    descriptor: Ljava/net/URLConnection;
    flags: (0x0004) ACC_PROTECTED

  protected java.io.InputStream _in;
    descriptor: Ljava/io/InputStream;
    flags: (0x0004) ACC_PROTECTED

  transient boolean _useCaches;
    descriptor: Z
    flags: (0x0080) ACC_TRANSIENT

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 40
            ldc Lorg/eclipse/jetty/util/resource/URLResource;
            invokestatic org.eclipse.jetty.util.log.Log.getLogger:(Ljava/lang/Class;)Lorg/eclipse/jetty/util/log/Logger;
            putstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected void <init>(java.net.URL, java.net.URLConnection);
    descriptor: (Ljava/net/URL;Ljava/net/URLConnection;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
        start local 1 // java.net.URL url
        start local 2 // java.net.URLConnection connection
         0: .line 48
            aload 0 /* this */
            invokespecial org.eclipse.jetty.util.resource.Resource.<init>:()V
         1: .line 45
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
         2: .line 46
            aload 0 /* this */
            getstatic org.eclipse.jetty.util.resource.Resource.__defaultUseCaches:Z
            putfield org.eclipse.jetty.util.resource.URLResource._useCaches:Z
         3: .line 50
            aload 0 /* this */
            aload 1 /* url */
            putfield org.eclipse.jetty.util.resource.URLResource._url:Ljava/net/URL;
         4: .line 51
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._url:Ljava/net/URL;
            invokevirtual java.net.URL.toExternalForm:()Ljava/lang/String;
            putfield org.eclipse.jetty.util.resource.URLResource._urlString:Ljava/lang/String;
         5: .line 52
            aload 0 /* this */
            aload 2 /* connection */
            putfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
         6: .line 53
            return
        end local 2 // java.net.URLConnection connection
        end local 1 // java.net.URL url
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/eclipse/jetty/util/resource/URLResource;
            0    7     1         url  Ljava/net/URL;
            0    7     2  connection  Ljava/net/URLConnection;
    MethodParameters:
            Name  Flags
      url         
      connection  

  protected void <init>(java.net.URL, java.net.URLConnection, boolean);
    descriptor: (Ljava/net/URL;Ljava/net/URLConnection;Z)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
        start local 1 // java.net.URL url
        start local 2 // java.net.URLConnection connection
        start local 3 // boolean useCaches
         0: .line 57
            aload 0 /* this */
            aload 1 /* url */
            aload 2 /* connection */
            invokespecial org.eclipse.jetty.util.resource.URLResource.<init>:(Ljava/net/URL;Ljava/net/URLConnection;)V
         1: .line 58
            aload 0 /* this */
            iload 3 /* useCaches */
            putfield org.eclipse.jetty.util.resource.URLResource._useCaches:Z
         2: .line 59
            return
        end local 3 // boolean useCaches
        end local 2 // java.net.URLConnection connection
        end local 1 // java.net.URL url
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lorg/eclipse/jetty/util/resource/URLResource;
            0    3     1         url  Ljava/net/URL;
            0    3     2  connection  Ljava/net/URLConnection;
            0    3     3   useCaches  Z
    MethodParameters:
            Name  Flags
      url         
      connection  
      useCaches   

  protected synchronized boolean checkConnection();
    descriptor: ()Z
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 63
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
            ifnonnull 6
         1: .line 67
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._url:Ljava/net/URL;
            invokevirtual java.net.URL.openConnection:()Ljava/net/URLConnection;
            putfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
         2: .line 68
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._useCaches:Z
            invokevirtual java.net.URLConnection.setUseCaches:(Z)V
         3: .line 69
            goto 6
         4: .line 70
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         5: .line 72
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 1 /* e */
            invokeinterface org.eclipse.jetty.util.log.Logger.ignore:(Ljava/lang/Throwable;)V
        end local 1 // java.io.IOException e
         6: .line 75
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
            ifnull 7
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         7: iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
            5    6     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     3       4  Class java.io.IOException

  public synchronized void close();
    descriptor: ()V
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 84
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
            ifnull 6
         1: .line 88
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
            invokevirtual java.io.InputStream.close:()V
         2: .line 89
            goto 5
         3: .line 90
      StackMap locals:
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         4: .line 92
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 1 /* e */
            invokeinterface org.eclipse.jetty.util.log.Logger.ignore:(Ljava/lang/Throwable;)V
        end local 1 // java.io.IOException e
         5: .line 94
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
         6: .line 97
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
            ifnull 8
         7: .line 98
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
         8: .line 99
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
            4    5     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     2       3  Class java.io.IOException

  public boolean exists();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 109
            aload 0 /* this */
            dup
            astore 1
            monitorenter
         1: .line 111
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.resource.URLResource.checkConnection:()Z
            ifeq 3
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
            ifnonnull 3
         2: .line 112
            aload 0 /* this */
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
            invokevirtual java.net.URLConnection.getInputStream:()Ljava/io/InputStream;
            putfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
         3: .line 109
      StackMap locals: org.eclipse.jetty.util.resource.URLResource
      StackMap stack:
            aload 1
            monitorexit
         4: goto 9
      StackMap locals:
      StackMap stack: java.lang.Throwable
         5: aload 1
            monitorexit
         6: athrow
         7: .line 115
      StackMap locals: org.eclipse.jetty.util.resource.URLResource
      StackMap stack: java.io.IOException
            astore 1 /* e */
        start local 1 // java.io.IOException e
         8: .line 117
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            aload 1 /* e */
            invokeinterface org.eclipse.jetty.util.log.Logger.ignore:(Ljava/lang/Throwable;)V
        end local 1 // java.io.IOException e
         9: .line 119
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
            ifnull 10
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
        10: iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
            8    9     1     e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           1     4       5  any
           5     6       5  any
           0     7       7  Class java.io.IOException

  public boolean isDirectory();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 130
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.resource.URLResource.exists:()Z
            ifeq 1
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._urlString:Ljava/lang/String;
            ldc "/"
            invokevirtual java.lang.String.endsWith:(Ljava/lang/String;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/util/resource/URLResource;

  public long lastModified();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 139
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.resource.URLResource.checkConnection:()Z
            ifeq 2
         1: .line 140
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
            invokevirtual java.net.URLConnection.getLastModified:()J
            lreturn
         2: .line 141
      StackMap locals:
      StackMap stack:
            ldc -1
            lreturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/util/resource/URLResource;

  public long length();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 150
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.resource.URLResource.checkConnection:()Z
            ifeq 2
         1: .line 151
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
            invokevirtual java.net.URLConnection.getContentLength:()I
            i2l
            lreturn
         2: .line 152
      StackMap locals:
      StackMap stack:
            ldc -1
            lreturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/eclipse/jetty/util/resource/URLResource;

  public java.net.URI getURI();
    descriptor: ()Ljava/net/URI;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 163
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._url:Ljava/net/URL;
            invokevirtual java.net.URL.toURI:()Ljava/net/URI;
         1: areturn
         2: .line 165
      StackMap locals:
      StackMap stack: java.net.URISyntaxException
            astore 1 /* e */
        start local 1 // java.net.URISyntaxException e
         3: .line 167
            new java.lang.RuntimeException
            dup
            aload 1 /* e */
            invokespecial java.lang.RuntimeException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 1 // java.net.URISyntaxException e
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
            3    4     1     e  Ljava/net/URISyntaxException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.net.URISyntaxException

  public java.io.File getFile();
    descriptor: ()Ljava/io/File;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 179
            aconst_null
            areturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
    Exceptions:
      throws java.io.IOException

  public java.lang.String getName();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 188
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._url:Ljava/net/URL;
            invokevirtual java.net.URL.toExternalForm:()Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;

  public synchronized java.io.InputStream getInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0021) ACC_PUBLIC, ACC_SYNCHRONIZED
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 199
            aload 0 /* this */
            iconst_1
            invokevirtual org.eclipse.jetty.util.resource.URLResource.getInputStream:(Z)Ljava/io/InputStream;
            areturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
    Exceptions:
      throws java.io.IOException

  protected synchronized java.io.InputStream getInputStream(boolean);
    descriptor: (Z)Ljava/io/InputStream;
    flags: (0x0024) ACC_PROTECTED, ACC_SYNCHRONIZED
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
        start local 1 // boolean resetConnection
         0: .line 216
            aload 0 /* this */
            invokevirtual org.eclipse.jetty.util.resource.URLResource.checkConnection:()Z
            ifne 2
         1: .line 217
            new java.io.IOException
            dup
            ldc "Invalid resource"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 221
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
            ifnull 11
         3: .line 223
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
            astore 2 /* in */
        start local 2 // java.io.InputStream in
         4: .line 224
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.resource.URLResource._in:Ljava/io/InputStream;
         5: .line 225
            aload 2 /* in */
            astore 4
         6: .line 231
            iload 1 /* resetConnection */
            ifeq 10
         7: .line 233
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
         8: .line 234
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 10
         9: .line 235
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Connection nulled"
            iconst_0
            anewarray java.lang.Object
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        10: .line 225
      StackMap locals: org.eclipse.jetty.util.resource.URLResource int java.io.InputStream top java.io.InputStream
      StackMap stack:
            aload 4
            areturn
        end local 2 // java.io.InputStream in
        11: .line 227
      StackMap locals: org.eclipse.jetty.util.resource.URLResource int
      StackMap stack:
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
            invokevirtual java.net.URLConnection.getInputStream:()Ljava/io/InputStream;
            astore 4
        12: .line 231
            iload 1 /* resetConnection */
            ifeq 16
        13: .line 233
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
        14: .line 234
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 16
        15: .line 235
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Connection nulled"
            iconst_0
            anewarray java.lang.Object
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        16: .line 227
      StackMap locals: org.eclipse.jetty.util.resource.URLResource int top top java.io.InputStream
      StackMap stack:
            aload 4
            areturn
        17: .line 230
      StackMap locals: org.eclipse.jetty.util.resource.URLResource int
      StackMap stack: java.lang.Throwable
            astore 3
        18: .line 231
            iload 1 /* resetConnection */
            ifeq 22
        19: .line 233
            aload 0 /* this */
            aconst_null
            putfield org.eclipse.jetty.util.resource.URLResource._connection:Ljava/net/URLConnection;
        20: .line 234
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            invokeinterface org.eclipse.jetty.util.log.Logger.isDebugEnabled:()Z
            ifeq 22
        21: .line 235
            getstatic org.eclipse.jetty.util.resource.URLResource.LOG:Lorg/eclipse/jetty/util/log/Logger;
            ldc "Connection nulled"
            iconst_0
            anewarray java.lang.Object
            invokeinterface org.eclipse.jetty.util.log.Logger.debug:(Ljava/lang/String;[Ljava/lang/Object;)V
        22: .line 237
      StackMap locals: org.eclipse.jetty.util.resource.URLResource int top java.lang.Throwable
      StackMap stack:
            aload 3
            athrow
        end local 1 // boolean resetConnection
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   23     0             this  Lorg/eclipse/jetty/util/resource/URLResource;
            0   23     1  resetConnection  Z
            4   11     2               in  Ljava/io/InputStream;
      Exception table:
        from    to  target  type
           2     6      17  any
          11    12      17  any
    Exceptions:
      throws java.io.IOException
    MethodParameters:
                 Name  Flags
      resetConnection  

  public java.nio.channels.ReadableByteChannel getReadableByteChannel();
    descriptor: ()Ljava/nio/channels/ReadableByteChannel;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 243
            aconst_null
            areturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
    Exceptions:
      throws java.io.IOException

  public boolean delete();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 253
            new java.lang.SecurityException
            dup
            ldc "Delete not supported"
            invokespecial java.lang.SecurityException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
    Exceptions:
      throws java.lang.SecurityException

  public boolean renameTo(org.eclipse.jetty.util.resource.Resource);
    descriptor: (Lorg/eclipse/jetty/util/resource/Resource;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
        start local 1 // org.eclipse.jetty.util.resource.Resource dest
         0: .line 263
            new java.lang.SecurityException
            dup
            ldc "RenameTo not supported"
            invokespecial java.lang.SecurityException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // org.eclipse.jetty.util.resource.Resource dest
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
            0    1     1  dest  Lorg/eclipse/jetty/util/resource/Resource;
    Exceptions:
      throws java.lang.SecurityException
    MethodParameters:
      Name  Flags
      dest  

  public java.lang.String[] list();
    descriptor: ()[Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 272
            aconst_null
            areturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;

  public org.eclipse.jetty.util.resource.Resource addPath(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/eclipse/jetty/util/resource/Resource;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
        start local 1 // java.lang.String path
         0: .line 283
            aload 1 /* path */
            ifnonnull 2
         1: .line 284
            aconst_null
            areturn
         2: .line 286
      StackMap locals:
      StackMap stack:
            aload 1 /* path */
            invokestatic org.eclipse.jetty.util.URIUtil.canonicalPath:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* path */
         3: .line 288
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._url:Ljava/net/URL;
            invokevirtual java.net.URL.toExternalForm:()Ljava/lang/String;
            aload 1 /* path */
            invokestatic org.eclipse.jetty.util.URIUtil.encodePath:(Ljava/lang/String;)Ljava/lang/String;
            invokestatic org.eclipse.jetty.util.URIUtil.addEncodedPaths:(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String;
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._useCaches:Z
            invokestatic org.eclipse.jetty.util.resource.URLResource.newResource:(Ljava/lang/String;Z)Lorg/eclipse/jetty/util/resource/Resource;
            areturn
        end local 1 // java.lang.String path
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
            0    4     1  path  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException, java.net.MalformedURLException
    MethodParameters:
      Name  Flags
      path  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 294
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._urlString:Ljava/lang/String;
            areturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 300
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._urlString:Ljava/lang/String;
            invokevirtual java.lang.String.hashCode:()I
            ireturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
        start local 1 // java.lang.Object o
         0: .line 306
            aload 1 /* o */
            instanceof org.eclipse.jetty.util.resource.URLResource
            ifeq 1
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._urlString:Ljava/lang/String;
            aload 1 /* o */
            checkcast org.eclipse.jetty.util.resource.URLResource
            getfield org.eclipse.jetty.util.resource.URLResource._urlString:Ljava/lang/String;
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/eclipse/jetty/util/resource/URLResource;
            0    2     1     o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      o     

  public boolean getUseCaches();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
         0: .line 311
            aload 0 /* this */
            getfield org.eclipse.jetty.util.resource.URLResource._useCaches:Z
            ireturn
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jetty/util/resource/URLResource;

  public boolean isContainedIn(org.eclipse.jetty.util.resource.Resource);
    descriptor: (Lorg/eclipse/jetty/util/resource/Resource;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.eclipse.jetty.util.resource.URLResource this
        start local 1 // org.eclipse.jetty.util.resource.Resource containingResource
         0: .line 317
            iconst_0
            ireturn
        end local 1 // org.eclipse.jetty.util.resource.Resource containingResource
        end local 0 // org.eclipse.jetty.util.resource.URLResource this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    1     0                this  Lorg/eclipse/jetty/util/resource/URLResource;
            0    1     1  containingResource  Lorg/eclipse/jetty/util/resource/Resource;
    Exceptions:
      throws java.net.MalformedURLException
    MethodParameters:
                    Name  Flags
      containingResource  
}
SourceFile: "URLResource.java"