var GraphManagerService=function() {
GraphManagerService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GraphManagerService.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
DebugGetLatest:function(succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'DebugGetLatest',false,{},succeededCallback,failedCallback,userContext); },
DebugGetByTime:function(succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'DebugGetByTime',false,{},succeededCallback,failedCallback,userContext); },
DebugGetLatestCustomed:function(succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'DebugGetLatestCustomed',false,{},succeededCallback,failedCallback,userContext); },
DebugGetByTimeCustomed:function(succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'DebugGetByTimeCustomed',false,{},succeededCallback,failedCallback,userContext); },
GetLatest:function(locationCSV,type,zoom,succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'GetLatest',false,{locationCSV:locationCSV,type:type,zoom:zoom},succeededCallback,failedCallback,userContext); },
GetByTime:function(locationCSV,type,zoom,startTime,endTime,succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'GetByTime',false,{locationCSV:locationCSV,type:type,zoom:zoom,startTime:startTime,endTime:endTime},succeededCallback,failedCallback,userContext); },
GetLatestCustomed:function(locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'GetLatestCustomed',false,{locationCSV:locationCSV,type:type,zoom:zoom,min:min,max:max,resolution:resolution,colorMapIndex:colorMapIndex,isContinuous:isContinuous,interpolationMethod:interpolationMethod},succeededCallback,failedCallback,userContext); },
GetByTimeCustomed:function(locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'GetByTimeCustomed',false,{locationCSV:locationCSV,type:type,zoom:zoom,startTime:startTime,endTime:endTime,min:min,max:max,resolution:resolution,colorMapIndex:colorMapIndex,isContinuous:isContinuous,interpolationMethod:interpolationMethod},succeededCallback,failedCallback,userContext); },
GetLatestWithAuthentication:function(userName,passCode,locationCSV,type,zoom,succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'GetLatestWithAuthentication',false,{userName:userName,passCode:passCode,locationCSV:locationCSV,type:type,zoom:zoom},succeededCallback,failedCallback,userContext); },
GetByTimeWithAuthentication:function(userName,passCode,locationCSV,type,zoom,startTime,endTime,succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'GetByTimeWithAuthentication',false,{userName:userName,passCode:passCode,locationCSV:locationCSV,type:type,zoom:zoom,startTime:startTime,endTime:endTime},succeededCallback,failedCallback,userContext); },
GetLatestCustomedWithAuthentication:function(userName,passCode,locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'GetLatestCustomedWithAuthentication',false,{userName:userName,passCode:passCode,locationCSV:locationCSV,type:type,zoom:zoom,min:min,max:max,resolution:resolution,colorMapIndex:colorMapIndex,isContinuous:isContinuous,interpolationMethod:interpolationMethod},succeededCallback,failedCallback,userContext); },
GetByTimeCustomedWithAuthentication:function(userName,passCode,locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,succeededCallback, failedCallback, userContext) {
return this._invoke(GraphManagerService.get_path(), 'GetByTimeCustomedWithAuthentication',false,{userName:userName,passCode:passCode,locationCSV:locationCSV,type:type,zoom:zoom,startTime:startTime,endTime:endTime,min:min,max:max,resolution:resolution,colorMapIndex:colorMapIndex,isContinuous:isContinuous,interpolationMethod:interpolationMethod},succeededCallback,failedCallback,userContext); }}
GraphManagerService.registerClass('GraphManagerService',Sys.Net.WebServiceProxy);
GraphManagerService._staticInstance = new GraphManagerService();
GraphManagerService.set_path = function(value) { GraphManagerService._staticInstance._path = value; }
GraphManagerService.get_path = function() { return GraphManagerService._staticInstance._path; }
GraphManagerService.set_timeout = function(value) { GraphManagerService._staticInstance._timeout = value; }
GraphManagerService.get_timeout = function() { return GraphManagerService._staticInstance._timeout; }
GraphManagerService.set_defaultUserContext = function(value) { GraphManagerService._staticInstance._userContext = value; }
GraphManagerService.get_defaultUserContext = function() { return GraphManagerService._staticInstance._userContext; }
GraphManagerService.set_defaultSucceededCallback = function(value) { GraphManagerService._staticInstance._succeeded = value; }
GraphManagerService.get_defaultSucceededCallback = function() { return GraphManagerService._staticInstance._succeeded; }
GraphManagerService.set_defaultFailedCallback = function(value) { GraphManagerService._staticInstance._failed = value; }
GraphManagerService.get_defaultFailedCallback = function() { return GraphManagerService._staticInstance._failed; }
GraphManagerService.set_path("/sensewebv3/sensormap/graphTx/GraphManagerService.asmx");
GraphManagerService.HelloWorld= function(onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
GraphManagerService.DebugGetLatest= function(onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.DebugGetLatest(onSuccess,onFailed,userContext); }
GraphManagerService.DebugGetByTime= function(onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.DebugGetByTime(onSuccess,onFailed,userContext); }
GraphManagerService.DebugGetLatestCustomed= function(onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.DebugGetLatestCustomed(onSuccess,onFailed,userContext); }
GraphManagerService.DebugGetByTimeCustomed= function(onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.DebugGetByTimeCustomed(onSuccess,onFailed,userContext); }
GraphManagerService.GetLatest= function(locationCSV,type,zoom,onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.GetLatest(locationCSV,type,zoom,onSuccess,onFailed,userContext); }
GraphManagerService.GetByTime= function(locationCSV,type,zoom,startTime,endTime,onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.GetByTime(locationCSV,type,zoom,startTime,endTime,onSuccess,onFailed,userContext); }
GraphManagerService.GetLatestCustomed= function(locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.GetLatestCustomed(locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,onSuccess,onFailed,userContext); }
GraphManagerService.GetByTimeCustomed= function(locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.GetByTimeCustomed(locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,onSuccess,onFailed,userContext); }
GraphManagerService.GetLatestWithAuthentication= function(userName,passCode,locationCSV,type,zoom,onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.GetLatestWithAuthentication(userName,passCode,locationCSV,type,zoom,onSuccess,onFailed,userContext); }
GraphManagerService.GetByTimeWithAuthentication= function(userName,passCode,locationCSV,type,zoom,startTime,endTime,onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.GetByTimeWithAuthentication(userName,passCode,locationCSV,type,zoom,startTime,endTime,onSuccess,onFailed,userContext); }
GraphManagerService.GetLatestCustomedWithAuthentication= function(userName,passCode,locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.GetLatestCustomedWithAuthentication(userName,passCode,locationCSV,type,zoom,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,onSuccess,onFailed,userContext); }
GraphManagerService.GetByTimeCustomedWithAuthentication= function(userName,passCode,locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,onSuccess,onFailed,userContext) {GraphManagerService._staticInstance.GetByTimeCustomedWithAuthentication(userName,passCode,locationCSV,type,zoom,startTime,endTime,min,max,resolution,colorMapIndex,isContinuous,interpolationMethod,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('GraphTransformer');
if (typeof(GraphTransformer.GraphScript) === 'undefined') {
GraphTransformer.GraphScript=gtc("GraphTransformer.GraphScript");
GraphTransformer.GraphScript.registerClass('GraphTransformer.GraphScript');
}
