Package org.apache.solr.response
Class JavaBinResponseWriter
java.lang.Object
org.apache.solr.response.JavaBinResponseWriter
- All Implemented Interfaces:
QueryResponseWriter,NamedListInitializedPlugin
Solr's "javabin" format.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields 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.util.NamedList<Object> Serializes and deserializes to aNamedList, thus normalizing a response as if read from a client via JavaBin.voidwrite(OutputStream out, SolrQueryRequest req, SolrQueryResponse response, String contentType) Writes the response to theOutputStream.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.solr.util.plugin.NamedListInitializedPlugin
initMethods inherited from interface org.apache.solr.response.QueryResponseWriter
write, writeToString
-
Constructor Details
-
JavaBinResponseWriter
public JavaBinResponseWriter()
-
-
Method Details
-
write
public void write(OutputStream out, SolrQueryRequest req, SolrQueryResponse response, String contentType) throws IOException Description copied from interface:QueryResponseWriterWrites the response to theOutputStream.contentTypeis fromQueryResponseWriter.getContentType(SolrQueryRequest, SolrQueryResponse), and it's often ignored.- Specified by:
writein interfaceQueryResponseWriter- 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.
-
getParsedResponse
public static org.apache.solr.common.util.NamedList<Object> getParsedResponse(SolrQueryRequest req, SolrQueryResponse rsp) Serializes and deserializes to aNamedList, thus normalizing a response as if read from a client via JavaBin. Documents becomeSolrDocument, DocList becomesSolrDocumentList, etc.- Since:
- solr 1.4
-