Author: ygrego Date: 2015-04-20 12:56:19 +0000 (Mon, 20 Apr 2015) New Revision: 1236 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1236 Log: Implementation of class "StartupInformation". Added: oipf/js/impl/model/StartupInformation.js Added: oipf/js/impl/model/StartupInformation.js =================================================================== --- oipf/js/impl/model/StartupInformation.js (rev 0) +++ oipf/js/impl/model/StartupInformation.js 2015-04-20 12:56:19 UTC (rev 1236) @@ -0,0 +1,35 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +var StartupInformation = Class.extend({ + + /* + * Description: + * The mechanism used to obtain the url property. + * Any of the STARTUP_URL_* values defined in section 7.3.3.1 are valid. + * + * Visibility Type : readonly String + */ + urlSource: null, + + /* + * Description: + * The URL used at startup of the OITF. + * If the urlSource property is STARTUP_URL_NONE then + * the value of this property SHALL be NULL. + * If the urlSource property is STARTUP_URL_PRECONFIGURED then + * the value of this property SHALL be undefined. + * + * Visibility Type : readonly String + */ + url: null, + + init: function(urlSource, url) { + this.urlSource = urlSource; + this.url = url; + } + +});
participants (1)
-
ygregoï¼ users.nuiton.org