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

travel.wink.wise.partner.client.params.Parameter Maven / Gradle / Ivy

The newest version!
package travel.wink.wise.partner.client.params;

/**
 * The type Parameter.
 */
public abstract class Parameter {

    private final String value;

    /**
     * Instantiates a new Parameter.
     *
     * @param value the value
     */
    protected Parameter(final String value) {
        this.value = value;
    }

    /**
     * Key string.
     *
     * @return the string
     */
    public abstract String key();

    /**
     * Value string.
     *
     * @return the string
     */
    public String value() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy