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

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

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

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

public class RequestEntityByteArray  extends ByteArrayEntity implements RequestEntitySimple {

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

	public RequestEntityByteArray(byte[] b, ContentType contentType) {
		super(b, contentType);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityByteArray(byte[] b, int off, int len, ContentType contentType) {
		super(b, off, len, contentType);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityByteArray(byte[] b, int off, int len) {
		super(b, off, len);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityByteArray(byte[] b) {
		super(b);
		// TODO Auto-generated constructor stub
	}

	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy