initi.doc/docfiles/providers/interface/providers_system.js

85 lines
1.4 KiB
JavaScript

/**
*
* @group providers_interface
* @namespace ProvidersSystem
*/
function ProvidersSystem() {
/**
*
* @public
* @function start
* @memberof ProvidersSystem
*/
this.start = function () {
};
/**
*
* @public
* @function login
* @memberof ProvidersSystem
* @param _login {string}
* @param _password {string}
* @param _callback {function}
*/
this.login = function (_login, _password, _callback) {
};
/**
*
* @public
* @function break_connection
* @memberof ProvidersSystem
*/
this.break_connection = function () {
};
/**
*
* @name s_connected
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_connected = -1;
/**
*
* @name s_connecting
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_connecting = -1;
/**
*
* @name s_platform_up
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_up = -1;
/**
*
* @name s_platform_down
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_down = -1;
/**
*
*
* @name s_platform_broken
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_broken = -1;
}