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

org.nofdev.http.HttpMessageWithHeader Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package org.nofdev.http;

import java.util.Map;

/**
 * Created by Qiang on 11/5/15.
 */
public class HttpMessageWithHeader extends HttpMessageSimple {


    private Map headers;

    public HttpMessageWithHeader() {
    }

    public HttpMessageWithHeader(int statusCode, String contentType, String body, Map headers) {
        super(statusCode,contentType,body);
        this.headers = headers;
    }

    public Map getHeaders() {
        return headers;
    }

    public void setHeaders(Map headers) {
        this.headers = headers;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy