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

com.iwbfly.myhttp.http.MyhttpHeader Maven / Gradle / Ivy

The newest version!
package com.iwbfly.myhttp.http;

/**
 * @author pangyajun
 * @since 2021/11/27 14:38
 **/
public class MyhttpHeader {
    private final String name;

    private String value;

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


    public String getName() {
        return name;
    }


    public String getValue() {
        return value;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy