ch.software_atelier.simpleflex.RequestArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleflex-base Show documentation
Show all versions of simpleflex-base Show documentation
Build Micro Services with pico footprint
package ch.software_atelier.simpleflex;
public class RequestArgument {
private final String _key;
private final String _value;
public RequestArgument(String key, String value) {
_key = key;
_value = value;
}
public String key(){
return _key;
}
public String value(){
return _value;
}
}