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

com.nu.art.http.HttpKeyValue Maven / Gradle / Ivy

There is a newer version: 1.2.59
Show newest version
/*
 * Copyright (c) 2016 to Adam van der Kruk (Zehavi) AKA TacB0sS - Nu-Art
 *
 * Restricted usage under specific license
 *
 */

package com.nu.art.http;

public final class HttpKeyValue {

	String key;

	String value;

	public HttpKeyValue(String key, String value) {
		super();
		this.key = key;
		this.value = value;
	}

	@Override
	public String toString() {
		return key + ":" + value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy