/**
  * Creates a new Kaltura objects DataGenerator
  * Gets The file path to it's configuration file
  * 
  * @param string $dataGeneratorConfigFilePath the config file path
  */
 public function __construct($dataGeneratorConfigFilePath)
 {
     $simpleXMLElement = kXml::openXmlFile($dataGeneratorConfigFilePath);
     $this->dataSourceFile = KalturaTestDataSourceFile::generateFromXML($simpleXMLElement);
     $this->dataSourceFile->setFilePath($dataGeneratorConfigFilePath);
 }