
com.github.becausetesting.httpclient.bean.RequestEntityString 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 java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
import java.nio.charset.UnsupportedCharsetException;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;
public class RequestEntityString extends StringEntity implements RequestEntitySimple {
/**
*
*/
private static final long serialVersionUID = -7011737982426984773L;
public RequestEntityString(String string, Charset charset) {
super(string, charset);
// TODO Auto-generated constructor stub
}
public RequestEntityString(String string, ContentType contentType) throws UnsupportedCharsetException {
super(string, contentType);
// TODO Auto-generated constructor stub
}
public RequestEntityString(String string, String charset) throws UnsupportedCharsetException {
super(string, charset);
// TODO Auto-generated constructor stub
}
/*
* text/plain
*/
public RequestEntityString(String string) throws UnsupportedEncodingException {
super(string);
// TODO Auto-generated constructor stub
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy