Lines Matching refs:httpResponse
401 HttpResponse httpResponse = null; in getResponse() local
412 httpResponse = createResponse(HttpStatus.SC_OK); in getResponse()
414 httpResponse = createResponse(HttpStatus.SC_NOT_FOUND); in getResponse()
416 httpResponse = createResponse(HttpStatus.SC_NOT_FOUND); in getResponse()
419 httpResponse = createResponse(HttpStatus.SC_MOVED_TEMPORARILY); in getResponse()
421 httpResponse.addHeader(header.first, header.second); in getResponse()
427 httpResponse = createResponse(HttpStatus.SC_OK); in getResponse()
429 httpResponse.setEntity(entity); in getResponse()
430 httpResponse.setHeader("Content-Length", "" + entity.getContentLength()); in getResponse()
432 httpResponse.addHeader(header.first, header.second); in getResponse()
436 StatusLine sl = httpResponse.getStatusLine(); in getResponse()
438 setDateHeaders(httpResponse); in getResponse()
439 return httpResponse; in getResponse()