Type.registerNamespace('Kryptiq.CC.UI.WebServices');
Kryptiq.CC.UI.WebServices.Authentication=function() {
Kryptiq.CC.UI.WebServices.Authentication.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Kryptiq.CC.UI.WebServices.Authentication.prototype={
RenewTicket:function(succeededCallback, failedCallback, userContext) {
return this._invoke(Kryptiq.CC.UI.WebServices.Authentication.get_path(), 'RenewTicket',false,{},succeededCallback,failedCallback,userContext); }}
Kryptiq.CC.UI.WebServices.Authentication.registerClass('Kryptiq.CC.UI.WebServices.Authentication',Sys.Net.WebServiceProxy);
Kryptiq.CC.UI.WebServices.Authentication._staticInstance = new Kryptiq.CC.UI.WebServices.Authentication();
Kryptiq.CC.UI.WebServices.Authentication.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; Kryptiq.CC.UI.WebServices.Authentication._staticInstance._path = value; }
Kryptiq.CC.UI.WebServices.Authentication.get_path = function() { return Kryptiq.CC.UI.WebServices.Authentication._staticInstance._path; }
Kryptiq.CC.UI.WebServices.Authentication.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); }
Kryptiq.CC.UI.WebServices.Authentication._staticInstance._timeout = value; }
Kryptiq.CC.UI.WebServices.Authentication.get_timeout = function() { 
return Kryptiq.CC.UI.WebServices.Authentication._staticInstance._timeout; }
Kryptiq.CC.UI.WebServices.Authentication.set_defaultUserContext = function(value) { 
Kryptiq.CC.UI.WebServices.Authentication._staticInstance._userContext = value; }
Kryptiq.CC.UI.WebServices.Authentication.get_defaultUserContext = function() { 
return Kryptiq.CC.UI.WebServices.Authentication._staticInstance._userContext; }
Kryptiq.CC.UI.WebServices.Authentication.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; Kryptiq.CC.UI.WebServices.Authentication._staticInstance._succeeded = value; }
Kryptiq.CC.UI.WebServices.Authentication.get_defaultSucceededCallback = function() { 
return Kryptiq.CC.UI.WebServices.Authentication._staticInstance._succeeded; }
Kryptiq.CC.UI.WebServices.Authentication.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; Kryptiq.CC.UI.WebServices.Authentication._staticInstance._failed = value; }
Kryptiq.CC.UI.WebServices.Authentication.get_defaultFailedCallback = function() { 
return Kryptiq.CC.UI.WebServices.Authentication._staticInstance._failed; }
Kryptiq.CC.UI.WebServices.Authentication.set_path("/portal/WebServices/Authentication.asmx");
Kryptiq.CC.UI.WebServices.Authentication.RenewTicket= function(onSuccess,onFailed,userContext) {Kryptiq.CC.UI.WebServices.Authentication._staticInstance.RenewTicket(onSuccess,onFailed,userContext); }
