Class SolrRequestInfo


  • public class SolrRequestInfo
    extends Object
    Information about the Solr request/response held in a ThreadLocal.
    • Field Detail

      • httpRequest

        public javax.servlet.http.HttpServletRequest httpRequest
    • Method Detail

      • clearRequestInfo

        public static void clearRequestInfo()
        Removes the most recent SolrRequestInfo from the stack. Close hooks are called.
      • reset

        public static void reset()
        This reset method is more of a protection mechanism as we expect it to be empty by now because all "set" calls need to be balanced with a "clear".
      • getUserPrincipal

        public Principal getUserPrincipal()
      • getNOW

        public Date getNOW()
      • getClientTimeZone

        public TimeZone getClientTimeZone()
        The TimeZone specified by the request, or UTC if none was specified.
      • getResponseBuilder

        public ResponseBuilder getResponseBuilder()
        May return null if the request handler is not based on SearchHandler
      • setResponseBuilder

        public void setResponseBuilder​(ResponseBuilder rb)
      • addCloseHook

        public void addCloseHook​(Closeable hook)
      • useServerToken

        public boolean useServerToken()
        Used when making remote requests to other Solr nodes from the thread associated with this request, true means the server token header should be used instead of the Principal associated with the request.
      • setUseServerToken

        public void setUseServerToken​(boolean use)