/**
  * Creates a new report.
  *
  * @return Varien_Object
  */
 protected function _createReport()
 {
     $report = new Varien_Object();
     $report->setType($this->_getType());
     $report->setEntityType($this->_getEntity());
     $report->setFailures(0);
     $report->setSuccesses(0);
     $report->setDuplicates(0);
     return $report;
 }