var ExtendedLibService=function() {
ExtendedLibService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ExtendedLibService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ExtendedLibService._staticInstance.get_path();},
GetExtendedLibraryDetail:function(library_id,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetExtendedLibraryDetail',false,{library_id:library_id},succeededCallback,failedCallback,userContext); }}
ExtendedLibService.registerClass('ExtendedLibService',Sys.Net.WebServiceProxy);
ExtendedLibService._staticInstance = new ExtendedLibService();
ExtendedLibService.set_path = function(value) { ExtendedLibService._staticInstance.set_path(value); }
ExtendedLibService.get_path = function() { return ExtendedLibService._staticInstance.get_path(); }
ExtendedLibService.set_timeout = function(value) { ExtendedLibService._staticInstance.set_timeout(value); }
ExtendedLibService.get_timeout = function() { return ExtendedLibService._staticInstance.get_timeout(); }
ExtendedLibService.set_defaultUserContext = function(value) { ExtendedLibService._staticInstance.set_defaultUserContext(value); }
ExtendedLibService.get_defaultUserContext = function() { return ExtendedLibService._staticInstance.get_defaultUserContext(); }
ExtendedLibService.set_defaultSucceededCallback = function(value) { ExtendedLibService._staticInstance.set_defaultSucceededCallback(value); }
ExtendedLibService.get_defaultSucceededCallback = function() { return ExtendedLibService._staticInstance.get_defaultSucceededCallback(); }
ExtendedLibService.set_defaultFailedCallback = function(value) { ExtendedLibService._staticInstance.set_defaultFailedCallback(value); }
ExtendedLibService.get_defaultFailedCallback = function() { return ExtendedLibService._staticInstance.get_defaultFailedCallback(); }
ExtendedLibService.set_path("/ExtendedLibService.asmx");
ExtendedLibService.GetExtendedLibraryDetail= function(library_id,onSuccess,onFailed,userContext) {ExtendedLibService._staticInstance.GetExtendedLibraryDetail(library_id,onSuccess,onFailed,userContext); }
