Type.registerNamespace('bWell_HPF.WebServices');
bWell_HPF.WebServices.NavigationLog=function() {
bWell_HPF.WebServices.NavigationLog.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
bWell_HPF.WebServices.NavigationLog.prototype={
recordPage:function(Source,Target,UserId,SessionId,IP,Platform,BrowserType,succeededCallback, failedCallback, userContext) {
return this._invoke(bWell_HPF.WebServices.NavigationLog.get_path(), 'recordPage',false,{Source:Source,Target:Target,UserId:UserId,SessionId:SessionId,IP:IP,Platform:Platform,BrowserType:BrowserType},succeededCallback,failedCallback,userContext); }}
bWell_HPF.WebServices.NavigationLog.registerClass('bWell_HPF.WebServices.NavigationLog',Sys.Net.WebServiceProxy);
bWell_HPF.WebServices.NavigationLog._staticInstance = new bWell_HPF.WebServices.NavigationLog();
bWell_HPF.WebServices.NavigationLog.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; bWell_HPF.WebServices.NavigationLog._staticInstance._path = value; }
bWell_HPF.WebServices.NavigationLog.get_path = function() { return bWell_HPF.WebServices.NavigationLog._staticInstance._path; }
bWell_HPF.WebServices.NavigationLog.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
bWell_HPF.WebServices.NavigationLog._staticInstance._timeout = value; }
bWell_HPF.WebServices.NavigationLog.get_timeout = function() { 
return bWell_HPF.WebServices.NavigationLog._staticInstance._timeout; }
bWell_HPF.WebServices.NavigationLog.set_defaultUserContext = function(value) { 
bWell_HPF.WebServices.NavigationLog._staticInstance._userContext = value; }
bWell_HPF.WebServices.NavigationLog.get_defaultUserContext = function() { 
return bWell_HPF.WebServices.NavigationLog._staticInstance._userContext; }
bWell_HPF.WebServices.NavigationLog.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; bWell_HPF.WebServices.NavigationLog._staticInstance._succeeded = value; }
bWell_HPF.WebServices.NavigationLog.get_defaultSucceededCallback = function() { 
return bWell_HPF.WebServices.NavigationLog._staticInstance._succeeded; }
bWell_HPF.WebServices.NavigationLog.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; bWell_HPF.WebServices.NavigationLog._staticInstance._failed = value; }
bWell_HPF.WebServices.NavigationLog.get_defaultFailedCallback = function() { 
return bWell_HPF.WebServices.NavigationLog._staticInstance._failed; }
bWell_HPF.WebServices.NavigationLog.set_path("/WebServices/bWellServices.asmx");
bWell_HPF.WebServices.NavigationLog.recordPage= function(Source,Target,UserId,SessionId,IP,Platform,BrowserType,onSuccess,onFailed,userContext) {bWell_HPF.WebServices.NavigationLog._staticInstance.recordPage(Source,Target,UserId,SessionId,IP,Platform,BrowserType,onSuccess,onFailed,userContext); }
