public class XSLTResponseWriter extends java.lang.Object implements QueryResponseWriter
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
CONTEXT_TRANSFORMER_KEY |
static java.lang.String |
DEFAULT_CONTENT_TYPE |
private static org.slf4j.Logger |
log |
static java.lang.String |
TRANSFORM_PARAM |
private static XMLErrorLogger |
xmllog |
static int |
XSLT_CACHE_DEFAULT |
private static java.lang.String |
XSLT_CACHE_PARAM |
private java.lang.Integer |
xsltCacheLifetimeSeconds |
CONTENT_TYPE_TEXT_ASCII, CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8
Constructor and Description |
---|
XSLTResponseWriter() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getContentType(SolrQueryRequest request,
SolrQueryResponse response)
Return the applicable Content Type for a request, this method
must be thread safe.
|
protected javax.xml.transform.Transformer |
getTransformer(SolrQueryRequest request)
Get Transformer from request context, or from TransformerProvider.
|
void |
init(NamedList n)
init will be called just once, immediately after creation. |
void |
write(java.io.Writer writer,
SolrQueryRequest request,
SolrQueryResponse response)
Write a SolrQueryResponse, this method must be thread save.
|
public static final java.lang.String DEFAULT_CONTENT_TYPE
public static final java.lang.String TRANSFORM_PARAM
public static final java.lang.String CONTEXT_TRANSFORMER_KEY
private java.lang.Integer xsltCacheLifetimeSeconds
public static final int XSLT_CACHE_DEFAULT
private static final java.lang.String XSLT_CACHE_PARAM
private static final org.slf4j.Logger log
private static final XMLErrorLogger xmllog
public void init(NamedList n)
QueryResponseWriter
init
will be called just once, immediately after creation.
The args are user-level initialization parameters that may be specified when declaring a response writer in solrconfig.xml
init
in interface QueryResponseWriter
init
in interface NamedListInitializedPlugin
public java.lang.String getContentType(SolrQueryRequest request, SolrQueryResponse response)
QueryResponseWriter
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.
getContentType
in interface QueryResponseWriter
public void write(java.io.Writer writer, SolrQueryRequest request, SolrQueryResponse response) throws java.io.IOException
QueryResponseWriter
Information about the request (in particular: formating 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.
write
in interface QueryResponseWriter
java.io.IOException
protected javax.xml.transform.Transformer getTransformer(SolrQueryRequest request) throws java.io.IOException
java.io.IOException