var VdcInfosService=function() {
VdcInfosService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
VdcInfosService.prototype={
GetStats:function(id,room,control,succeededCallback, failedCallback, userContext) {
return this._invoke(VdcInfosService.get_path(), 'GetStats',false,{id:id,room:room,control:control},succeededCallback,failedCallback,userContext); },
GetInformation:function(id,control,succeededCallback, failedCallback, userContext) {
return this._invoke(VdcInfosService.get_path(), 'GetInformation',false,{id:id,control:control},succeededCallback,failedCallback,userContext); },
GetInformations:function(id,room,control,succeededCallback, failedCallback, userContext) {
return this._invoke(VdcInfosService.get_path(), 'GetInformations',false,{id:id,room:room,control:control},succeededCallback,failedCallback,userContext); },
GetAllProfilsAvailable:function(id,control,succeededCallback, failedCallback, userContext) {
return this._invoke(VdcInfosService.get_path(), 'GetAllProfilsAvailable',false,{id:id,control:control},succeededCallback,failedCallback,userContext); }}
VdcInfosService.registerClass('VdcInfosService',Sys.Net.WebServiceProxy);
VdcInfosService._staticInstance = new VdcInfosService();
VdcInfosService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; VdcInfosService._staticInstance._path = value; }
VdcInfosService.get_path = function() { return VdcInfosService._staticInstance._path; }
VdcInfosService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
VdcInfosService._staticInstance._timeout = value; }
VdcInfosService.get_timeout = function() { 
return VdcInfosService._staticInstance._timeout; }
VdcInfosService.set_defaultUserContext = function(value) { 
VdcInfosService._staticInstance._userContext = value; }
VdcInfosService.get_defaultUserContext = function() { 
return VdcInfosService._staticInstance._userContext; }
VdcInfosService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; VdcInfosService._staticInstance._succeeded = value; }
VdcInfosService.get_defaultSucceededCallback = function() { 
return VdcInfosService._staticInstance._succeeded; }
VdcInfosService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; VdcInfosService._staticInstance._failed = value; }
VdcInfosService.get_defaultFailedCallback = function() { 
return VdcInfosService._staticInstance._failed; }
VdcInfosService.set_path("/WebService/VdcInfosService.asmx");
VdcInfosService.GetStats= function(id,room,control,onSuccess,onFailed,userContext) {VdcInfosService._staticInstance.GetStats(id,room,control,onSuccess,onFailed,userContext); }
VdcInfosService.GetInformation= function(id,control,onSuccess,onFailed,userContext) {VdcInfosService._staticInstance.GetInformation(id,control,onSuccess,onFailed,userContext); }
VdcInfosService.GetInformations= function(id,room,control,onSuccess,onFailed,userContext) {VdcInfosService._staticInstance.GetInformations(id,room,control,onSuccess,onFailed,userContext); }
VdcInfosService.GetAllProfilsAvailable= function(id,control,onSuccess,onFailed,userContext) {VdcInfosService._staticInstance.GetAllProfilsAvailable(id,control,onSuccess,onFailed,userContext); }
