Package org.apache.solr.response
Class JSONResponseWriter
- java.lang.Object
-
- org.apache.solr.response.JSONResponseWriter
-
- All Implemented Interfaces:
QueryResponseWriter,NamedListInitializedPlugin
- Direct Known Subclasses:
GeoJSONResponseWriter
public class JSONResponseWriter extends Object implements QueryResponseWriter
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONTENT_TYPE_JSON_UTF8-
Fields inherited from interface org.apache.solr.response.QueryResponseWriter
CONTENT_TYPE_TEXT_ASCII, CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8
-
-
Constructor Summary
Constructors Constructor Description JSONResponseWriter()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContentType(SolrQueryRequest request, SolrQueryResponse response)Return the applicable Content Type for a request, this method must be thread safe.static PushWritergetPushWriter(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp)voidinit(NamedList namedList)initwill be called just once, immediately after creation.voidwrite(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp)Write a SolrQueryResponse, this method must be thread save.
-
-
-
Field Detail
-
CONTENT_TYPE_JSON_UTF8
public static String CONTENT_TYPE_JSON_UTF8
-
-
Method Detail
-
init
public void init(NamedList namedList)
Description copied from interface:QueryResponseWriterinitwill be called just once, immediately after creation.The args are user-level initialization parameters that may be specified when declaring a response writer in solrconfig.xml
- Specified by:
initin interfaceNamedListInitializedPlugin- Specified by:
initin interfaceQueryResponseWriter
-
write
public void write(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp) throws IOException
Description copied from interface:QueryResponseWriterWrite a SolrQueryResponse, this method must be thread save.Information about the request (in particular: formatting options) may be obtained from
reqbut the dominant source of information should bersp.There are no mandatory actions that write must perform. An empty write implementation would fulfill all interface obligations.
- Specified by:
writein interfaceQueryResponseWriter- Throws:
IOException
-
getContentType
public String getContentType(SolrQueryRequest request, SolrQueryResponse response)
Description copied from interface:QueryResponseWriterReturn the applicable Content Type for a request, this method must be thread safe.QueryResponseWriter's must implement this method to return a valid HTTP Content-Type header for the request, that will logically correspond with the output produced by the write method.
- Specified by:
getContentTypein interfaceQueryResponseWriter- Returns:
- a Content-Type string, which may not be null.
-
getPushWriter
public static PushWriter getPushWriter(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp)
-
-