mirror of
https://github.com/happyfish100/fastdfs-client-java.git
synced 2026-09-20 04:08:59 +00:00
49 lines
891 B
Java
49 lines
891 B
Java
/*
|
|
* Copyright (C) 2008 Happy Fish / YuQing
|
|
*
|
|
* FastDFS Java Client may be copied only under the terms of the GNU Lesser
|
|
* General Public License (LGPL).
|
|
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail.
|
|
*/
|
|
|
|
package org.csource.common;
|
|
|
|
/**
|
|
* name(key) and value pair model
|
|
*
|
|
* @author Happy Fish / YuQing
|
|
* @version Version 1.0
|
|
*/
|
|
public class NameValuePair {
|
|
protected String name;
|
|
protected String value;
|
|
|
|
public NameValuePair() {
|
|
}
|
|
|
|
public NameValuePair(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public NameValuePair(String name, String value) {
|
|
this.name = name;
|
|
this.value = value;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getValue() {
|
|
return this.value;
|
|
}
|
|
|
|
public void setValue(String value) {
|
|
this.value = value;
|
|
}
|
|
}
|