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