public class VelocityResponseWriter extends Object implements QueryResponseWriter, SolrCoreAware
Modifier and Type | Field and Description |
---|---|
static String |
CONTENT_TYPE |
static String |
DEFAULT_CONTENT_TYPE |
static String |
JSON |
static String |
JSON_CONTENT_TYPE |
static String |
LAYOUT |
static String |
LAYOUT_ENABLED |
static String |
LOCALE |
static String |
PARAMS_RESOURCE_LOADER_ENABLED |
static String |
PROPERTIES_FILE |
static String |
SOLR_RESOURCE_LOADER_ENABLED |
static String |
TEMPLATE |
static String |
TEMPLATE_BASE_DIR |
static String |
TEMPLATE_EXTENSION |
CONTENT_TYPE_TEXT_ASCII, CONTENT_TYPE_TEXT_UTF8, CONTENT_TYPE_XML_UTF8
Constructor and Description |
---|
VelocityResponseWriter() |
Modifier and Type | Method and Description |
---|---|
String |
getContentType(SolrQueryRequest request,
SolrQueryResponse response)
Return the applicable Content Type for a request, this method
must be thread safe.
|
void |
inform(SolrCore core) |
void |
init(NamedList args)
init will be called just once, immediately after creation. |
void |
write(Writer writer,
SolrQueryRequest request,
SolrQueryResponse response)
Write a SolrQueryResponse, this method must be thread save.
|
public static final String TEMPLATE_BASE_DIR
public static final String PARAMS_RESOURCE_LOADER_ENABLED
public static final String SOLR_RESOURCE_LOADER_ENABLED
public static final String PROPERTIES_FILE
public static final String TEMPLATE
public static final String LAYOUT
public static final String LAYOUT_ENABLED
public static final String CONTENT_TYPE
public static final String JSON
public static final String LOCALE
public static final String TEMPLATE_EXTENSION
public static final String DEFAULT_CONTENT_TYPE
public static final String JSON_CONTENT_TYPE
public void init(NamedList args)
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 void inform(SolrCore core)
inform
in interface SolrCoreAware
public 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(Writer writer, SolrQueryRequest request, SolrQueryResponse response) throws 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
IOException
Copyright © 2000–2015 The Apache Software Foundation. All rights reserved.