001package org.xbib.elasticsearch.rest;
002
003import org.elasticsearch.common.xcontent.XContentBuilder;
004import org.elasticsearch.rest.BytesRestResponse;
005import org.elasticsearch.rest.RestRequest;
006import org.elasticsearch.rest.RestStatus;
007
008import java.io.IOException;
009
010public class XContentRestResponse extends BytesRestResponse {
011
012    public XContentRestResponse(RestRequest request, RestStatus status, XContentBuilder builder) throws IOException {
013        super(status, builder);
014    }
015
016}