Package org.apache.solr.jersey
Interface RequestContextKeys
-
public interface RequestContextKeys
Keys used to store and retrieve values from the Jersey request context.Properties are generally set in V2HttpCall's 'invokeJerseyRequest' and retrieved in individual
ContainerRequestFilter
s usingContainerRequestContext.getProperty(String)
-
-
Field Summary
Fields Modifier and Type Field Description static String
COLLECTION_LIST
static String
CORE_CONTAINER
static String
HANDLER_METRICS
static String
HTTP_SERVLET_REQ
static String
HTTP_SERVLET_RSP
static String
NOT_FOUND_FLAG
A flag set byNotFoundExceptionMapper
indicating that a 404 error response was suppressed.static String
REQUEST_TYPE
static String
RESOURCE_TO_RH_MAPPING
static String
SOLR_CORE
static String
SOLR_JERSEY_RESPONSE
static String
SOLR_PARAMS
static String
SOLR_QUERY_REQUEST
static String
SOLR_QUERY_RESPONSE
static String
SUPPRESS_ERROR_ON_NOT_FOUND_EXCEPTION
A flag read byNotFoundExceptionMapper
to suppress its normal error responsestatic String
TIMER
-
-
-
Field Detail
-
HTTP_SERVLET_REQ
static final String HTTP_SERVLET_REQ
-
HTTP_SERVLET_RSP
static final String HTTP_SERVLET_RSP
-
SOLR_QUERY_REQUEST
static final String SOLR_QUERY_REQUEST
-
SOLR_QUERY_RESPONSE
static final String SOLR_QUERY_RESPONSE
-
CORE_CONTAINER
static final String CORE_CONTAINER
-
RESOURCE_TO_RH_MAPPING
static final String RESOURCE_TO_RH_MAPPING
-
SOLR_CORE
static final String SOLR_CORE
-
REQUEST_TYPE
static final String REQUEST_TYPE
-
SOLR_PARAMS
static final String SOLR_PARAMS
-
COLLECTION_LIST
static final String COLLECTION_LIST
- See Also:
- Constant Field Values
-
HANDLER_METRICS
static final String HANDLER_METRICS
-
TIMER
static final String TIMER
-
SOLR_JERSEY_RESPONSE
static final String SOLR_JERSEY_RESPONSE
-
SUPPRESS_ERROR_ON_NOT_FOUND_EXCEPTION
static final String SUPPRESS_ERROR_ON_NOT_FOUND_EXCEPTION
A flag read byNotFoundExceptionMapper
to suppress its normal error responseUsed primarily to allow Solr to lookup certain APIs in multiple JAX-RS applications.
- See Also:
NotFoundExceptionMapper
, Constant Field Values
-
NOT_FOUND_FLAG
static final String NOT_FOUND_FLAG
A flag set byNotFoundExceptionMapper
indicating that a 404 error response was suppressed.Used primarily to allow Solr to lookup certian APIs in multiple JAX-RS applications.
- See Also:
NotFoundExceptionMapper
, Constant Field Values
-
-