QPID-8314: [Broker-J][WMC] Remove unused class JsonRest
diff --git a/broker-plugins/management-http/src/main/java/resources/js/qpid/common/JsonRest.js b/broker-plugins/management-http/src/main/java/resources/js/qpid/common/JsonRest.js
deleted file mode 100644
index b9a12f2..0000000
--- a/broker-plugins/management-http/src/main/java/resources/js/qpid/common/JsonRest.js
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- *
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *   http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.
- *
- */
-
-define(["dojo/_base/lang", "dojo/json", "dojo/_base/declare", "dojo/store/util/QueryResults"],
-    function (lang, json, declare, QueryResults)
-    {
-        return declare("qpid.common.JsonRest", null, {
-            headers: null,
-            idProperty: "id",
-            firstProperty: "first",
-            lastProperty: "last",
-            accepts: "application/javascript, application/json",
-
-            // constructor arguments
-            queryOperation: null,
-            modelObject: null,
-            management: null,
-            queryParams: null,
-            totalRetriever: null,
-
-            constructor: function (options)
-            {
-                this.headers = {};
-                declare.safeMixin(this, options);
-            },
-
-            getIdentity: function (object)
-            {
-                return object[this.idProperty];
-            },
-
-            query: function (query, options)
-            {
-                query = lang.mixin(query || {}, this.queryParams);
-                options = options || {};
-                var headers = lang.mixin({Accept: this.accepts}, this.headers, options.headers);
-
-                query[this.firstProperty] = options.start >= 0 ? options.start : -1;
-                query[this.lastProperty] = options.count >= 0 && query.first >= 0 ? options.count + query.first : -1;
-
-                var modelObj = {
-                    name: this.queryOperation,
-                    parent: this.modelObject,
-                    type: this.modelObject.type
-                };
-                var results = management.load(modelObj, query, {headers: headers});
-
-                if (this.totalRetriever)
-                {
-                    results.total = this.totalRetriever();
-                }
-                return QueryResults(results);
-            }
-        });
-
-    });