com.nu.art.http.HttpKeyValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-module Show documentation
Show all versions of http-module Show documentation
A collection of core tools I use
/*
* 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 - 2025 Weber Informatics LLC | Privacy Policy