/**
  * Sets the status code for this response.
  *
  * @param status the status code for this response.
  */
 public void setStatus(final int status) {
   // the order is important here as statusDC.setXXX will reset the parsedIntStatus
   httpStatus = HttpStatus.getHttpStatus(status);
 }