com.litongjava.tio.http.common.KeyValue Maven / Gradle / Ivy
package com.litongjava.tio.http.common;
/**
*
* @author tanyaowu
*
*/
public class KeyValue {
private String key;
private String value;
/**
* @return the key
*/
public String getKey() {
return key;
}
/**
* @return the value
*/
public String getValue() {
return value;
}
/**
* @param key the key to set
*/
public void setKey(String key) {
this.key = key;
}
/**
* @param value the value to set
*/
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy