public class org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource implements javax.activation.DataSource
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource
  super_class: java.lang.Object
{
  private final byte[] byteBuffer;
    descriptor: [B
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int byteBufferOffset;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int byteBufferLength;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.io.File tempFile;
    descriptor: Ljava/io/File;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.String type;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  protected void <init>(byte[], int, int, java.io.File, java.lang.String);
    descriptor: ([BIILjava/io/File;Ljava/lang/String;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=6, args_size=6
        start local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
        start local 1 // byte[] byteBuffer
        start local 2 // int byteBufferOffset
        start local 3 // int byteBufferLength
        start local 4 // java.io.File tempFile
        start local 5 // java.lang.String type
         0: .line 55
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 56
            aload 0 /* this */
            aload 1 /* byteBuffer */
            putfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.byteBuffer:[B
         2: .line 57
            aload 0 /* this */
            iload 2 /* byteBufferOffset */
            putfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.byteBufferOffset:I
         3: .line 58
            aload 0 /* this */
            iload 3 /* byteBufferLength */
            putfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.byteBufferLength:I
         4: .line 59
            aload 0 /* this */
            aload 4 /* tempFile */
            putfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.tempFile:Ljava/io/File;
         5: .line 60
            aload 0 /* this */
            aload 5 /* type */
            putfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.type:Ljava/lang/String;
         6: .line 61
            return
        end local 5 // java.lang.String type
        end local 4 // java.io.File tempFile
        end local 3 // int byteBufferLength
        end local 2 // int byteBufferOffset
        end local 1 // byte[] byteBuffer
        end local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0    7     0              this  Lorg/jboss/resteasy/plugins/providers/DataSourceProvider$SequencedDataSource;
            0    7     1        byteBuffer  [B
            0    7     2  byteBufferOffset  I
            0    7     3  byteBufferLength  I
            0    7     4          tempFile  Ljava/io/File;
            0    7     5              type  Ljava/lang/String;
    MethodParameters:
                  Name  Flags
      byteBuffer        final
      byteBufferOffset  final
      byteBufferLength  final
      tempFile          final
      type              final

  public java.lang.String getContentType();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
         0: .line 66
            aload 0 /* this */
            getfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.type:Ljava/lang/String;
            areturn
        end local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jboss/resteasy/plugins/providers/DataSourceProvider$SequencedDataSource;

  public java.io.InputStream getInputStream();
    descriptor: ()Ljava/io/InputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=1
        start local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
         0: .line 72
            new java.io.ByteArrayInputStream
            dup
            aload 0 /* this */
            getfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.byteBuffer:[B
            aload 0 /* this */
            getfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.byteBufferOffset:I
            aload 0 /* this */
            getfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.byteBufferLength:I
            invokespecial java.io.ByteArrayInputStream.<init>:([BII)V
            astore 1 /* bis */
        start local 1 // java.io.InputStream bis
         1: .line 73
            aload 0 /* this */
            getfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.tempFile:Ljava/io/File;
            ifnonnull 3
         2: .line 74
            aload 1 /* bis */
            areturn
         3: .line 76
      StackMap locals: java.io.InputStream
      StackMap stack:
            new java.io.FileInputStream
            dup
            aload 0 /* this */
            getfield org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource.tempFile:Ljava/io/File;
            invokespecial java.io.FileInputStream.<init>:(Ljava/io/File;)V
            astore 2 /* fis */
        start local 2 // java.io.InputStream fis
         4: .line 77
            new java.io.SequenceInputStream
            dup
            aload 1 /* bis */
            aload 2 /* fis */
            invokespecial java.io.SequenceInputStream.<init>:(Ljava/io/InputStream;Ljava/io/InputStream;)V
            areturn
        end local 2 // java.io.InputStream fis
        end local 1 // java.io.InputStream bis
        end local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/jboss/resteasy/plugins/providers/DataSourceProvider$SequencedDataSource;
            1    5     1   bis  Ljava/io/InputStream;
            4    5     2   fis  Ljava/io/InputStream;
    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.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
         0: .line 83
            ldc ""
            areturn
        end local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jboss/resteasy/plugins/providers/DataSourceProvider$SequencedDataSource;

  public java.io.OutputStream getOutputStream();
    descriptor: ()Ljava/io/OutputStream;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
         0: .line 89
            new java.io.IOException
            dup
            getstatic org.jboss.resteasy.resteasy_jaxrs.i18n.Messages.MESSAGES:Lorg/jboss/resteasy/resteasy_jaxrs/i18n/Messages;
            invokeinterface org.jboss.resteasy.resteasy_jaxrs.i18n.Messages.noOutputStreamAllowed:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/jboss/resteasy/plugins/providers/DataSourceProvider$SequencedDataSource;
    Exceptions:
      throws java.io.IOException
}
SourceFile: "DataSourceProvider.java"
NestHost: org.jboss.resteasy.plugins.providers.DataSourceProvider
InnerClasses:
  protected SequencedDataSource = org.jboss.resteasy.plugins.providers.DataSourceProvider$SequencedDataSource of org.jboss.resteasy.plugins.providers.DataSourceProvider