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