Type.registerNamespace('EventPoint.Web.WS');
EventPoint.Web.WS.Scheduler=function() {
EventPoint.Web.WS.Scheduler.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
EventPoint.Web.WS.Scheduler.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return EventPoint.Web.WS.Scheduler._staticInstance.get_path();},
UpdateSchedule:function(sessionID,action,userHash,succeededCallback, failedCallback, userContext) {
/// <param name="sessionID" type="String">System.String</param>
/// <param name="action" type="String">System.String</param>
/// <param name="userHash" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'UpdateSchedule',false,{sessionID:sessionID,action:action,userHash:userHash},succeededCallback,failedCallback,userContext); },
UpdateUserTopic:function(topicID,status,action,userHash,succeededCallback, failedCallback, userContext) {
/// <param name="topicID" type="String">System.String</param>
/// <param name="status" type="Number">System.Int32</param>
/// <param name="action" type="String">System.String</param>
/// <param name="userHash" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'UpdateUserTopic',false,{topicID:topicID,status:status,action:action,userHash:userHash},succeededCallback,failedCallback,userContext); }}
EventPoint.Web.WS.Scheduler.registerClass('EventPoint.Web.WS.Scheduler',Sys.Net.WebServiceProxy);
EventPoint.Web.WS.Scheduler._staticInstance = new EventPoint.Web.WS.Scheduler();
EventPoint.Web.WS.Scheduler.set_path = function(value) {
EventPoint.Web.WS.Scheduler._staticInstance.set_path(value); }
EventPoint.Web.WS.Scheduler.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return EventPoint.Web.WS.Scheduler._staticInstance.get_path();}
EventPoint.Web.WS.Scheduler.set_timeout = function(value) {
EventPoint.Web.WS.Scheduler._staticInstance.set_timeout(value); }
EventPoint.Web.WS.Scheduler.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return EventPoint.Web.WS.Scheduler._staticInstance.get_timeout(); }
EventPoint.Web.WS.Scheduler.set_defaultUserContext = function(value) { 
EventPoint.Web.WS.Scheduler._staticInstance.set_defaultUserContext(value); }
EventPoint.Web.WS.Scheduler.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return EventPoint.Web.WS.Scheduler._staticInstance.get_defaultUserContext(); }
EventPoint.Web.WS.Scheduler.set_defaultSucceededCallback = function(value) { 
 EventPoint.Web.WS.Scheduler._staticInstance.set_defaultSucceededCallback(value); }
EventPoint.Web.WS.Scheduler.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return EventPoint.Web.WS.Scheduler._staticInstance.get_defaultSucceededCallback(); }
EventPoint.Web.WS.Scheduler.set_defaultFailedCallback = function(value) { 
EventPoint.Web.WS.Scheduler._staticInstance.set_defaultFailedCallback(value); }
EventPoint.Web.WS.Scheduler.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return EventPoint.Web.WS.Scheduler._staticInstance.get_defaultFailedCallback(); }
EventPoint.Web.WS.Scheduler.set_path("/WS/Scheduler.asmx");
EventPoint.Web.WS.Scheduler.UpdateSchedule= function(sessionID,action,userHash,onSuccess,onFailed,userContext) {
/// <param name="sessionID" type="String">System.String</param>
/// <param name="action" type="String">System.String</param>
/// <param name="userHash" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
EventPoint.Web.WS.Scheduler._staticInstance.UpdateSchedule(sessionID,action,userHash,onSuccess,onFailed,userContext); }
EventPoint.Web.WS.Scheduler.UpdateUserTopic= function(topicID,status,action,userHash,onSuccess,onFailed,userContext) {
/// <param name="topicID" type="String">System.String</param>
/// <param name="status" type="Number">System.Int32</param>
/// <param name="action" type="String">System.String</param>
/// <param name="userHash" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
EventPoint.Web.WS.Scheduler._staticInstance.UpdateUserTopic(topicID,status,action,userHash,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(EventPoint.Web.WS.ScheduleResult) === 'undefined') {
EventPoint.Web.WS.ScheduleResult=gtc("EventPoint.Web.WS.ScheduleResult");
EventPoint.Web.WS.ScheduleResult.registerClass('EventPoint.Web.WS.ScheduleResult');
}
