Package org.apache.solr.response
Class JSONResponseWriter
java.lang.Object
org.apache.solr.response.JSONResponseWriter
- All Implemented Interfaces:
QueryResponseWriter,TextQueryResponseWriter,NamedListInitializedPlugin
- Direct Known Subclasses:
GeoJSONResponseWriter
JSON
QueryResponseWriter.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.solr.response.TextQueryResponseWriter
TextQueryResponseWriter.NonFlushingStream -
Field Summary
FieldsFields inherited from interface org.apache.solr.response.QueryResponseWriter
CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetContentType(SolrQueryRequest request, SolrQueryResponse response) Return the applicable Content Type for a request, this method must be thread safe.static org.apache.solr.common.PushWritergetPushWriter(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp) voidinit(org.apache.solr.common.util.NamedList<?> namedList) initwill be called just once, immediately after creation.voidwrite(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp) Write a SolrQueryResponse in a textual manner.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.solr.response.QueryResponseWriter
writeMethods inherited from interface org.apache.solr.response.TextQueryResponseWriter
write, writeToString
-
Field Details
-
CONTENT_TYPE_JSON_UTF8
-
-
Constructor Details
-
JSONResponseWriter
public JSONResponseWriter()
-
-
Method Details
-
init
public void init(org.apache.solr.common.util.NamedList<?> namedList) Description copied from interface:NamedListInitializedPlugininitwill be called just once, immediately after creation.Source of the initialization arguments will typically be solrconfig.xml, but will ultimately depends on the plugin itself
- Specified by:
initin interfaceNamedListInitializedPlugin- Parameters:
namedList- non-null list of initialization parameters (may be empty)
-
write
Description copied from interface:TextQueryResponseWriterWrite a SolrQueryResponse in a textual manner.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 interfaceTextQueryResponseWriter- Throws:
IOException
-
getContentType
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 org.apache.solr.common.PushWriter getPushWriter(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp)
-