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

com.joe.http.response.IHeader Maven / Gradle / Ivy

package com.joe.http.response;

import org.apache.http.Header;

/**
 * 请求头
 *
 * @author joe
 */
public class IHeader {
    private Header header;

    IHeader(Header header) {
        this.header = header;
    }

    public String getName() {
        return header.getName();
    }


    public String getValue() {
        return header.getValue();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy