protected RejectionReportBean createIdentityRejectionBean(
      RejectionReportBean item, boolean blankCollectionDate) {
    RejectionReportBean filler = new RejectionReportBean();

    filler.setAccessionNumber(item.getAccessionNumber());
    filler.setReceivedDate(item.getReceivedDate());
    filler.setCollectionDate(blankCollectionDate ? " " : item.getCollectionDate());
    filler.setPatientOrTestName(item.getNonPrintingPatient());

    return filler;
  }