All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.becausetesting.httpclient.bean.RequestEntityInputStream Maven / Gradle / Ivy

There is a newer version: 1.1.3
Show newest version
package com.github.becausetesting.httpclient.bean;

import java.io.InputStream;

import org.apache.http.entity.ContentType;
import org.apache.http.entity.InputStreamEntity;
import org.apache.http.entity.StringEntity;

public class RequestEntityInputStream extends InputStreamEntity implements RequestEntitySimple  {

	/**
	 * 
	 */
	private static final long serialVersionUID = -4882297529167199253L;

	public RequestEntityInputStream(InputStream instream, ContentType contentType) {
		super(instream, contentType);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityInputStream(InputStream instream, long length, ContentType contentType) {
		super(instream, length, contentType);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityInputStream(InputStream instream, long length) {
		super(instream, length);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityInputStream(InputStream instream) {
		super(instream);
		// TODO Auto-generated constructor stub
	}

	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy