
com.github.becausetesting.httpclient.bean.RequestEntityByteArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
A common libraries used for testing framework.
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