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

net.anotheria.rproxy.getter.HttpProxyHeader Maven / Gradle / Ivy

The newest version!
package net.anotheria.rproxy.getter;

/**
 * TODO comment this class
 *
 * @author lrosenberg
 * @since 04.06.18 10:35
 */
public class HttpProxyHeader {
	private String name;
	private String value;

	public HttpProxyHeader(String name, String value) {
		this.name = name;
		this.value = value;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	@Override
	public String toString() {
		return "(" + name +"= "+value+")";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy