View Javadoc

1   package com.atlassian.httpclient.apache.httpcomponents;
2   
3   import java.io.ByteArrayInputStream;
4   
5   public class EntityByteArrayInputStream extends ByteArrayInputStream {
6       private byte[] bytes;
7   
8       public EntityByteArrayInputStream(byte[] bytes) {
9           super(bytes);
10          this.bytes = bytes;
11      }
12  
13      public byte[] getBytes() {
14          return bytes;
15      }
16  }