/**
  * This method returns CoverSheet,Renewal,Full Application,Type of application and Application
  * certification information for the CoverSheet type.
  *
  * @return CoverSheet object containing cover sheet information details.
  */
 private CoverSheet getCoverSheet() {
   CoverSheet coverSheet = CoverSheet.Factory.newInstance();
   coverSheet.setCheckCoverSheet(YesNoDataType.Enum.forInt(getChecklistAnswer(QUESTION_ID_1)));
   coverSheet.setCheckRenewal(
       YesNoNotApplicableDataType.Enum.forInt(getChecklistAnswer(QUESTION_ID_2)));
   coverSheet.setCheckTypeApp(YesNoDataType.Enum.forInt(getChecklistAnswer(QUESTION_ID_4)));
   coverSheet.setCheckAppCert(YesNoDataType.Enum.forInt(getChecklistAnswer(QUESTION_ID_5)));
   return coverSheet;
 }