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

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

There is a newer version: 1.1.3
Show newest version
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