Type.registerNamespace('CFCI');
CFCI.VESupport=function() {
CFCI.VESupport.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CFCI.VESupport.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return CFCI.VESupport._staticInstance.get_path();},
GetParticipant:function(id,locale,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetParticipant',false,{id:id,locale:locale},succeededCallback,failedCallback,userContext); },
SetCurrentAP:function(key,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SetCurrentAP',false,{key:key},succeededCallback,failedCallback,userContext); }}
CFCI.VESupport.registerClass('CFCI.VESupport',Sys.Net.WebServiceProxy);
CFCI.VESupport._staticInstance = new CFCI.VESupport();
CFCI.VESupport.set_path = function(value) { CFCI.VESupport._staticInstance.set_path(value); }
CFCI.VESupport.get_path = function() { return CFCI.VESupport._staticInstance.get_path(); }
CFCI.VESupport.set_timeout = function(value) { CFCI.VESupport._staticInstance.set_timeout(value); }
CFCI.VESupport.get_timeout = function() { return CFCI.VESupport._staticInstance.get_timeout(); }
CFCI.VESupport.set_defaultUserContext = function(value) { CFCI.VESupport._staticInstance.set_defaultUserContext(value); }
CFCI.VESupport.get_defaultUserContext = function() { return CFCI.VESupport._staticInstance.get_defaultUserContext(); }
CFCI.VESupport.set_defaultSucceededCallback = function(value) { CFCI.VESupport._staticInstance.set_defaultSucceededCallback(value); }
CFCI.VESupport.get_defaultSucceededCallback = function() { return CFCI.VESupport._staticInstance.get_defaultSucceededCallback(); }
CFCI.VESupport.set_defaultFailedCallback = function(value) { CFCI.VESupport._staticInstance.set_defaultFailedCallback(value); }
CFCI.VESupport.get_defaultFailedCallback = function() { return CFCI.VESupport._staticInstance.get_defaultFailedCallback(); }
CFCI.VESupport.set_path("/Pages/VESupport.asmx");
CFCI.VESupport.GetParticipant= function(id,locale,onSuccess,onFailed,userContext) {CFCI.VESupport._staticInstance.GetParticipant(id,locale,onSuccess,onFailed,userContext); }
CFCI.VESupport.SetCurrentAP= function(key,onSuccess,onFailed,userContext) {CFCI.VESupport._staticInstance.SetCurrentAP(key,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(CFCI.PartInfo) === 'undefined') {
CFCI.PartInfo=gtc("CFCI.PartInfo");
CFCI.PartInfo.registerClass('CFCI.PartInfo');
}
