public class org.springframework.web.servlet.resource.TransformedResource extends org.springframework.core.io.ByteArrayResource
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.springframework.web.servlet.resource.TransformedResource
  super_class: org.springframework.core.io.ByteArrayResource
{
  private final java.lang.String filename;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  private final long lastModified;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>(org.springframework.core.io.Resource, byte[]);
    descriptor: (Lorg/springframework/core/io/Resource;[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // org.springframework.web.servlet.resource.TransformedResource this
        start local 1 // org.springframework.core.io.Resource original
        start local 2 // byte[] transformedContent
         0: .line 43
            aload 0 /* this */
            aload 2 /* transformedContent */
            invokespecial org.springframework.core.io.ByteArrayResource.<init>:([B)V
         1: .line 44
            aload 0 /* this */
            aload 1 /* original */
            invokeinterface org.springframework.core.io.Resource.getFilename:()Ljava/lang/String;
            putfield org.springframework.web.servlet.resource.TransformedResource.filename:Ljava/lang/String;
         2: .line 46
            aload 0 /* this */
            aload 1 /* original */
            invokeinterface org.springframework.core.io.Resource.lastModified:()J
            putfield org.springframework.web.servlet.resource.TransformedResource.lastModified:J
         3: .line 47
            goto 6
         4: .line 48
      StackMap locals: org.springframework.web.servlet.resource.TransformedResource org.springframework.core.io.Resource byte[]
      StackMap stack: java.io.IOException
            astore 3 /* ex */
        start local 3 // java.io.IOException ex
         5: .line 50
            new java.lang.IllegalArgumentException
            dup
            aload 3 /* ex */
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.io.IOException ex
         6: .line 52
      StackMap locals:
      StackMap stack:
            return
        end local 2 // byte[] transformedContent
        end local 1 // org.springframework.core.io.Resource original
        end local 0 // org.springframework.web.servlet.resource.TransformedResource this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    7     0                this  Lorg/springframework/web/servlet/resource/TransformedResource;
            0    7     1            original  Lorg/springframework/core/io/Resource;
            0    7     2  transformedContent  [B
            5    6     3                  ex  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           2     3       4  Class java.io.IOException
    MethodParameters:
                    Name  Flags
      original            
      transformedContent  

  public java.lang.String getFilename();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.resource.TransformedResource this
         0: .line 58
            aload 0 /* this */
            getfield org.springframework.web.servlet.resource.TransformedResource.filename:Ljava/lang/String;
            areturn
        end local 0 // org.springframework.web.servlet.resource.TransformedResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/resource/TransformedResource;
    RuntimeVisibleAnnotations: 
      org.springframework.lang.Nullable()

  public long lastModified();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.springframework.web.servlet.resource.TransformedResource this
         0: .line 63
            aload 0 /* this */
            getfield org.springframework.web.servlet.resource.TransformedResource.lastModified:J
            lreturn
        end local 0 // org.springframework.web.servlet.resource.TransformedResource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/springframework/web/servlet/resource/TransformedResource;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "TransformedResource.java"