Author: ygrego Date: 2015-05-26 09:06:34 +0000 (Tue, 26 May 2015) New Revision: 1469 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1469 Log: Deletion of the creation of object "SearchManagerObject" and addition of property "_modelFactory" in method "init". Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-05-26 09:02:16 UTC (rev 1468) +++ oipf/js/impl/OipfObjectFactory.js 2015-05-26 09:06:34 UTC (rev 1469) @@ -25,6 +25,7 @@ init: function(modelFactory, dateUtils) { console.log("[INFO] constructor of OipfObjectFactory class called."); + this._modelFactory = modelFactory; this._oipfConfiguration = new OipfConfiguration(); this.applicationManagerObject = new ApplicationManagerObject(); this.capabilitiesObject = new CapabilitiesObject(modelFactory); @@ -38,7 +39,6 @@ this.configurationObject = new ConfigurationObject(); this.recordingSchedulerObject = new RecordingSchedulerObject( this.configurationObject.configuration, modelFactory, dateUtils); - this.searchManagerObject = new SearchManagerObject(modelFactory); //this.downloadManagerObject= new DownloadManagerObject(); //this.downloadTriggerObject= new DownloadTriggerObject(); //this.drmAgentObject= new DrmAgentObject();