X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/src/data/Response.js diff --git a/src/data/Response.js b/src/data/Response.js deleted file mode 100644 index a90a7798..00000000 --- a/src/data/Response.js +++ /dev/null @@ -1,39 +0,0 @@ -/*! - * Ext JS Library 3.3.1 - * Copyright(c) 2006-2010 Sencha Inc. - * licensing@sencha.com - * http://www.sencha.com/license - */ -/** - * @class Ext.data.Response - * A generic response class to normalize response-handling internally to the framework. - */ -Ext.data.Response = function(params) { - Ext.apply(this, params); -}; -Ext.data.Response.prototype = { - /** - * @cfg {String} action {@link Ext.data.Api#actions} - */ - action: undefined, - /** - * @cfg {Boolean} success - */ - success : undefined, - /** - * @cfg {String} message - */ - message : undefined, - /** - * @cfg {Array/Object} data - */ - data: undefined, - /** - * @cfg {Object} raw The raw response returned from server-code - */ - raw: undefined, - /** - * @cfg {Ext.data.Record/Ext.data.Record[]} records related to the Request action - */ - records: undefined -};