Type.registerNamespace('Trace.Web.Elements.Controls');
Trace.Web.Elements.Controls.WS=function() {
Trace.Web.Elements.Controls.WS.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Trace.Web.Elements.Controls.WS.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Trace.Web.Elements.Controls.WS._staticInstance.get_path();},
NotificationViewed:function(id,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'NotificationViewed',false,{id:id},succeededCallback,failedCallback,userContext); },
NotificationMinimized:function(minimized,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'NotificationMinimized',false,{minimized:minimized},succeededCallback,failedCallback,userContext); }}
Trace.Web.Elements.Controls.WS.registerClass('Trace.Web.Elements.Controls.WS',Sys.Net.WebServiceProxy);
Trace.Web.Elements.Controls.WS._staticInstance = new Trace.Web.Elements.Controls.WS();
Trace.Web.Elements.Controls.WS.set_path = function(value) { Trace.Web.Elements.Controls.WS._staticInstance.set_path(value); }
Trace.Web.Elements.Controls.WS.get_path = function() { return Trace.Web.Elements.Controls.WS._staticInstance.get_path(); }
Trace.Web.Elements.Controls.WS.set_timeout = function(value) { Trace.Web.Elements.Controls.WS._staticInstance.set_timeout(value); }
Trace.Web.Elements.Controls.WS.get_timeout = function() { return Trace.Web.Elements.Controls.WS._staticInstance.get_timeout(); }
Trace.Web.Elements.Controls.WS.set_defaultUserContext = function(value) { Trace.Web.Elements.Controls.WS._staticInstance.set_defaultUserContext(value); }
Trace.Web.Elements.Controls.WS.get_defaultUserContext = function() { return Trace.Web.Elements.Controls.WS._staticInstance.get_defaultUserContext(); }
Trace.Web.Elements.Controls.WS.set_defaultSucceededCallback = function(value) { Trace.Web.Elements.Controls.WS._staticInstance.set_defaultSucceededCallback(value); }
Trace.Web.Elements.Controls.WS.get_defaultSucceededCallback = function() { return Trace.Web.Elements.Controls.WS._staticInstance.get_defaultSucceededCallback(); }
Trace.Web.Elements.Controls.WS.set_defaultFailedCallback = function(value) { Trace.Web.Elements.Controls.WS._staticInstance.set_defaultFailedCallback(value); }
Trace.Web.Elements.Controls.WS.get_defaultFailedCallback = function() { return Trace.Web.Elements.Controls.WS._staticInstance.get_defaultFailedCallback(); }
Trace.Web.Elements.Controls.WS.set_path("/Elements/Controls/Services/WS.asmx");
Trace.Web.Elements.Controls.WS.NotificationViewed= function(id,onSuccess,onFailed,userContext) {Trace.Web.Elements.Controls.WS._staticInstance.NotificationViewed(id,onSuccess,onFailed,userContext); }
Trace.Web.Elements.Controls.WS.NotificationMinimized= function(minimized,onSuccess,onFailed,userContext) {Trace.Web.Elements.Controls.WS._staticInstance.NotificationMinimized(minimized,onSuccess,onFailed,userContext); }
