Author: ygrego Date: 2015-02-11 16:22:07 +0000 (Wed, 11 Feb 2015) New Revision: 789 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/789 Log: Addition of parameter 'requiredCapabilities' to method 'createVideoBroadcast' and pass it to call of video broadcast contructor. Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-02-10 16:10:12 UTC (rev 788) +++ oipf/js/impl/OipfObjectFactory.js 2015-02-11 16:22:07 UTC (rev 789) @@ -169,10 +169,10 @@ * so instantiation shall never fail if the object type is supported. The * allocationMethod property SHALL be set to DYNAMIC_ALLOCATION . */ - createVideoBroadcastObject: function() { + createVideoBroadcastObject: function(requiredCapabilities) { console.log("[INFO] createVideoBroadcastObject() of OipfObjectFactory class called."); - return new VideoBroadcastObject(); + return new VideoBroadcastObject(requiredCapabilities); },