/**
  * Set Reference of the EmployerCandidateDO
  *
  * @param Reference of the EmployerCandidateDO
  * @exception DataObjectException If the object is not found in the database.
  */
 public void setReference(String Reference) throws DataObjectException {
   try {
     // business actions/assertions prior to data assignment
     beforeAnySet();
   } catch (Exception e) {
     throw new DataObjectException("beforeAnySet: " + e.getMessage());
   }
   DO.setReference(Reference);
   afterAnySet(); // business actions/assertions after data assignment
 }