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

io.sphere.client.QueryParam Maven / Gradle / Ivy

There is a newer version: 0.72.1
Show newest version
package io.sphere.client;

import net.jcip.annotations.Immutable;

/** Single HTTP query parameter. */
@Immutable
public class QueryParam {
    private final String name;
    private final String value;

    public QueryParam(String name, String value) {
        this.name = name;
        this.value = value;
    }

    public String getName() { return name; }
    public String getValue() { return value; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy