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

com.sdklite.net.http.SimpleHttpHeader Maven / Gradle / Ivy

package com.sdklite.net.http;

public class SimpleHttpHeader implements HttpHeader {

    private final String name;
    private final String value;

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

    @Override
    public String getName() {
        return this.name;
    }

    @Override
    public String getValue() {
        return this.value;
    }
    
    @Override
    public String toString() {
        return this.name + ": " + this.value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy