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

com.yuweix.kuafu.http.request.FormField Maven / Gradle / Ivy

The newest version!
package com.yuweix.kuafu.http.request;



/**
 * @author yuwei
 */
public class FormField {
	private String key;
	private String value;


	public FormField() {
		
	}

	public FormField(String key, Object value) {
		this.key = key;
		this.value = value.toString();
	}


	public String getKey() {
		return key;
	}
	public void setKey(String key) {
		this.key = key;
	}
	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy