Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / src / data / Response.js
diff --git a/src/data/Response.js b/src/data/Response.js
deleted file mode 100644 (file)
index a90a779..0000000
+++ /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
-};