Interface QueryResponseWriter
- 
- All Superinterfaces:
- NamedListInitializedPlugin
 - All Known Subinterfaces:
- BinaryQueryResponseWriter
 - All Known Implementing Classes:
- BinaryResponseWriter,- CSVResponseWriter,- GeoJSONResponseWriter,- GraphMLResponseWriter,- JSONResponseWriter,- PHPResponseWriter,- PHPSerializedResponseWriter,- PythonResponseWriter,- RawResponseWriter,- RubyResponseWriter,- SchemaXmlResponseWriter,- SmileResponseWriter,- XMLResponseWriter
 
 public interface QueryResponseWriter extends NamedListInitializedPlugin Implementations ofQueryResponseWriterare used to format responses to query requests.Different QueryResponseWriters are registered with theSolrCore. One way to register a QueryResponseWriter with the core is through thesolrconfig.xmlfile.Example solrconfig.xmlentry to register aQueryResponseWriterimplementation to handle all queries with a writer type of "simple":<queryResponseWriter name="simple" class="foo.SimpleResponseWriter" />A single instance of any registered QueryResponseWriter is created via the default constructor and is reused for all relevant queries. 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringCONTENT_TYPE_TEXT_ASCIIstatic StringCONTENT_TYPE_TEXT_UTF8static StringCONTENT_TYPE_XML_UTF8
 - 
Method SummaryAll Methods Instance Methods Abstract 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.voidwrite(Writer writer, SolrQueryRequest request, SolrQueryResponse response)Write a SolrQueryResponse, this method must be thread save.- 
Methods inherited from interface org.apache.solr.util.plugin.NamedListInitializedPlugininit
 
- 
 
- 
- 
- 
Field Detail- 
CONTENT_TYPE_XML_UTF8static final String CONTENT_TYPE_XML_UTF8 - See Also:
- Constant Field Values
 
 - 
CONTENT_TYPE_TEXT_UTF8static final String CONTENT_TYPE_TEXT_UTF8 - See Also:
- Constant Field Values
 
 - 
CONTENT_TYPE_TEXT_ASCIIstatic final String CONTENT_TYPE_TEXT_ASCII - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
writevoid write(Writer writer, SolrQueryRequest request, SolrQueryResponse response) throws IOException Write 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. - Throws:
- IOException
 
 - 
getContentTypeString getContentType(SolrQueryRequest request, SolrQueryResponse response) 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. - Returns:
- a Content-Type string, which may not be null.
 
 
- 
 
-