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

com.internetitem.logback.elasticsearch.config.HttpRequestHeader Maven / Gradle / Ivy

package com.internetitem.logback.elasticsearch.config;

/**
 * A key value pair for the http header.
 */
public class HttpRequestHeader {

    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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy