var ShortcutService=function() {
ShortcutService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ShortcutService.prototype={
GetShortcutList:function(prefixText,count,contextKey,succeededCallback, failedCallback, userContext) {
return this._invoke(ShortcutService.get_path(), 'GetShortcutList',false,{prefixText:prefixText,count:count,contextKey:contextKey},succeededCallback,failedCallback,userContext); }}
ShortcutService.registerClass('ShortcutService',Sys.Net.WebServiceProxy);
ShortcutService._staticInstance = new ShortcutService();
ShortcutService.set_path = function(value) { ShortcutService._staticInstance._path = value; }
ShortcutService.get_path = function() { return ShortcutService._staticInstance._path; }
ShortcutService.set_timeout = function(value) { ShortcutService._staticInstance._timeout = value; }
ShortcutService.get_timeout = function() { return ShortcutService._staticInstance._timeout; }
ShortcutService.set_defaultUserContext = function(value) { ShortcutService._staticInstance._userContext = value; }
ShortcutService.get_defaultUserContext = function() { return ShortcutService._staticInstance._userContext; }
ShortcutService.set_defaultSucceededCallback = function(value) { ShortcutService._staticInstance._succeeded = value; }
ShortcutService.get_defaultSucceededCallback = function() { return ShortcutService._staticInstance._succeeded; }
ShortcutService.set_defaultFailedCallback = function(value) { ShortcutService._staticInstance._failed = value; }
ShortcutService.get_defaultFailedCallback = function() { return ShortcutService._staticInstance._failed; }
ShortcutService.set_path("/IAP/services/ShortcutService.asmx");
ShortcutService.GetShortcutList= function(prefixText,count,contextKey,onSuccess,onFailed,userContext) {ShortcutService._staticInstance.GetShortcutList(prefixText,count,contextKey,onSuccess,onFailed,userContext); }
