Interface ConfigurableRequest

  • All Superinterfaces:
    org.springframework.http.client.ClientHttpRequest, org.springframework.http.HttpMessage, org.springframework.http.HttpOutputMessage, org.springframework.http.HttpRequest
    All Known Implementing Classes:
    MfClientHttpRequestFactoryImpl.Request

    public interface ConfigurableRequest
    extends org.springframework.http.client.ClientHttpRequest
    A request object that provides low-level access so that the request can be configured for proxying, authentication, etc...
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      org.apache.http.client.methods.HttpRequestBase getUnderlyingRequest()
      Obtain the request object.
      void setConfiguration​(Configuration configuration)
      Set the current configuration object.
      • Methods inherited from interface org.springframework.http.client.ClientHttpRequest

        execute
      • Methods inherited from interface org.springframework.http.HttpMessage

        getHeaders
      • Methods inherited from interface org.springframework.http.HttpOutputMessage

        getBody
      • Methods inherited from interface org.springframework.http.HttpRequest

        getMethod, getMethodValue, getURI
    • Method Detail

      • getUnderlyingRequest

        org.apache.http.client.methods.HttpRequestBase getUnderlyingRequest()
        Obtain the request object.
      • setConfiguration

        void setConfiguration​(Configuration configuration)
        Set the current configuration object. This should only be called by ConfigFileResolvingHttpRequestFactory.
        Parameters:
        configuration - the config object for the current print job.