package com.puppetlabs.http.client;

import com.puppetlabs.http.client.RequestOptions;
import org.apache.http.entity.ContentType;

import java.util.Map;

/**
 * This class represents a response from an HTTP request.
 */
public class Response {
    private RequestOptions options;
    private String origContentEncoding;
    private Throwable error;
    private Object body;
    private Map<String, String> headers;
    private Integer status;
    private ContentType contentType;

    public Response(RequestOptions options, Throwable error) {
        this.options = options;
        this.error = error;
    }

    public Response(RequestOptions options, String origContentEncoding,
                    Object body, Map<String, String> headers, int status,
                    ContentType contentType) {
        this.options = options;
        this.origContentEncoding = origContentEncoding;
        this.body = body;
        this.headers = headers;
        this.status = status;
        this.contentType = contentType;
    }


    public RequestOptions getOptions() {
        return options;
    }

    public String getOrigContentEncoding() { return origContentEncoding; }

    public Throwable getError() {
        return error;
    }

    public Object getBody() {
        return body;
    }

    public Map<String, String> getHeaders() {
        return headers;
    }

    public Integer getStatus() {
        return status;
    }

    public ContentType getContentType() { return contentType; }
}
