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

com.github.becausetesting.httpclient.bean.RequestEntityFormData 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 java.util.List;


import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.StringEntity;

public class RequestEntityFormData extends UrlEncodedFormEntity implements RequestEntitySimple {

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

	public RequestEntityFormData(Iterable parameters, Charset charset) {
		super(parameters, charset);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityFormData(Iterable parameters) {
		super(parameters);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityFormData(List parameters, String charset)
			throws UnsupportedEncodingException {
		super(parameters, charset);
		// TODO Auto-generated constructor stub
	}

	public RequestEntityFormData(List parameters) throws UnsupportedEncodingException {
		super(parameters,Charset.forName("UTF-8"));
		// TODO Auto-generated constructor stub
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy