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

com.github.iarellano.rest_client.configuration.FormInput Maven / Gradle / Ivy

package com.github.iarellano.rest_client.configuration;

public class FormInput {

    private String name;

    private String value;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return "FormInput{" +
                "name='" + name + '\'' +
                ", value='" + value + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy