All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ch.software_atelier.simpleflex.RequestArgument Maven / Gradle / Ivy

There is a newer version: 2.2.2
Show newest version
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;
    }
            
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy