Type.registerNamespace('Service.utilities');
Service.utilities.DownloadLog=function() {
Service.utilities.DownloadLog.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Service.utilities.DownloadLog.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Service.utilities.DownloadLog._staticInstance.get_path();},
HelloWorld:function(abc,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'HelloWorld',false,{abc:abc},succeededCallback,failedCallback,userContext); },
WriteLog:function(l1_id,l2_id,l3_id,m_id,f_name,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'WriteLog',false,{l1_id:l1_id,l2_id:l2_id,l3_id:l3_id,m_id:m_id,f_name:f_name},succeededCallback,failedCallback,userContext); }}
Service.utilities.DownloadLog.registerClass('Service.utilities.DownloadLog',Sys.Net.WebServiceProxy);
Service.utilities.DownloadLog._staticInstance = new Service.utilities.DownloadLog();
Service.utilities.DownloadLog.set_path = function(value) { Service.utilities.DownloadLog._staticInstance.set_path(value); }
Service.utilities.DownloadLog.get_path = function() { return Service.utilities.DownloadLog._staticInstance.get_path(); }
Service.utilities.DownloadLog.set_timeout = function(value) { Service.utilities.DownloadLog._staticInstance.set_timeout(value); }
Service.utilities.DownloadLog.get_timeout = function() { return Service.utilities.DownloadLog._staticInstance.get_timeout(); }
Service.utilities.DownloadLog.set_defaultUserContext = function(value) { Service.utilities.DownloadLog._staticInstance.set_defaultUserContext(value); }
Service.utilities.DownloadLog.get_defaultUserContext = function() { return Service.utilities.DownloadLog._staticInstance.get_defaultUserContext(); }
Service.utilities.DownloadLog.set_defaultSucceededCallback = function(value) { Service.utilities.DownloadLog._staticInstance.set_defaultSucceededCallback(value); }
Service.utilities.DownloadLog.get_defaultSucceededCallback = function() { return Service.utilities.DownloadLog._staticInstance.get_defaultSucceededCallback(); }
Service.utilities.DownloadLog.set_defaultFailedCallback = function(value) { Service.utilities.DownloadLog._staticInstance.set_defaultFailedCallback(value); }
Service.utilities.DownloadLog.get_defaultFailedCallback = function() { return Service.utilities.DownloadLog._staticInstance.get_defaultFailedCallback(); }
Service.utilities.DownloadLog.set_enableJsonp = function(value) { Service.utilities.DownloadLog._staticInstance.set_enableJsonp(value); }
Service.utilities.DownloadLog.get_enableJsonp = function() { return Service.utilities.DownloadLog._staticInstance.get_enableJsonp(); }
Service.utilities.DownloadLog.set_jsonpCallbackParameter = function(value) { Service.utilities.DownloadLog._staticInstance.set_jsonpCallbackParameter(value); }
Service.utilities.DownloadLog.get_jsonpCallbackParameter = function() { return Service.utilities.DownloadLog._staticInstance.get_jsonpCallbackParameter(); }
Service.utilities.DownloadLog.set_path("/utilities/DownloadLog.asmx");
Service.utilities.DownloadLog.HelloWorld= function(abc,onSuccess,onFailed,userContext) {Service.utilities.DownloadLog._staticInstance.HelloWorld(abc,onSuccess,onFailed,userContext); }
Service.utilities.DownloadLog.WriteLog= function(l1_id,l2_id,l3_id,m_id,f_name,onSuccess,onFailed,userContext) {Service.utilities.DownloadLog._staticInstance.WriteLog(l1_id,l2_id,l3_id,m_id,f_name,onSuccess,onFailed,userContext); }

