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

com.daioware.net.http.items.HttpHeader Maven / Gradle / Ivy

package com.daioware.net.http.items;

import java.io.UnsupportedEncodingException;

public class HttpHeader extends KeyValue{

	public HttpHeader(String key, String value) {
		super(key, value);
	}

	public String toString(String encoding) throws UnsupportedEncodingException {
		return toString();
	}
	public String toString() {
		return value!=null?getKey()+": "+getValue():"";
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy