com.jd.httpservice.NamedParam Maven / Gradle / Ivy
package com.jd.httpservice;
public class NamedParam {
private String name;
private String value;
public NamedParam(String name, String value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy