Package org.apache.solr.response
Class GraphMLResponseWriter
- java.lang.Object
- 
- org.apache.solr.response.GraphMLResponseWriter
 
- 
- All Implemented Interfaces:
- QueryResponseWriter,- NamedListInitializedPlugin
 
 public class GraphMLResponseWriter extends Object implements QueryResponseWriter 
- 
- 
Field Summary- 
Fields inherited from interface org.apache.solr.response.QueryResponseWriterCONTENT_TYPE_TEXT_ASCII, CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8
 
- 
 - 
Constructor SummaryConstructors Constructor Description GraphMLResponseWriter()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContentType(SolrQueryRequest req, SolrQueryResponse res)Return the applicable Content Type for a request, this method must be thread safe.voidwrite(Writer writer, SolrQueryRequest req, SolrQueryResponse res)Write a SolrQueryResponse, this method must be thread save.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.solr.util.plugin.NamedListInitializedPlugininit
 
- 
 
- 
- 
- 
Method Detail- 
getContentTypepublic String getContentType(SolrQueryRequest req, SolrQueryResponse res) 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 interface- QueryResponseWriter
- Returns:
- a Content-Type string, which may not be null.
 
 - 
writepublic void write(Writer writer, SolrQueryRequest req, SolrQueryResponse res) 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 interface- QueryResponseWriter
- Throws:
- IOException
 
 
- 
 
-