Class JSONResponseWriter

java.lang.Object
org.apache.solr.response.JSONResponseWriter
All Implemented Interfaces:
QueryResponseWriter, TextQueryResponseWriter, NamedListInitializedPlugin
Direct Known Subclasses:
GeoJSONResponseWriter

public class JSONResponseWriter extends Object implements TextQueryResponseWriter
  • Field Details

    • CONTENT_TYPE_JSON_UTF8

      public static String 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: NamedListInitializedPlugin
      init will 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:
      init in interface NamedListInitializedPlugin
      Parameters:
      namedList - non-null list of initialization parameters (may be empty)
    • write

      public void write(Writer writer, SolrQueryRequest req, SolrQueryResponse rsp) throws IOException
      Description copied from interface: TextQueryResponseWriter
      Write a SolrQueryResponse in a textual manner.

      Information about the request (in particular: formatting options) may be obtained from req but the dominant source of information should be rsp.

      There are no mandatory actions that write must perform. An empty write implementation would fulfill all interface obligations.

      Specified by:
      write in interface TextQueryResponseWriter
      Throws:
      IOException
    • getContentType

      public String getContentType(SolrQueryRequest request, SolrQueryResponse response)
      Description copied from interface: QueryResponseWriter
      Return 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:
      getContentType in interface QueryResponseWriter
      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)