You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by or...@apache.org on 2019/07/03 08:11:27 UTC

[qpid-broker-j] branch master updated: QPID-8314: [Broker-J][WMC] Remove unused class JsonRest

This is an automated email from the ASF dual-hosted git repository.

orudyy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-broker-j.git


The following commit(s) were added to refs/heads/master by this push:
     new ab3674c  QPID-8314: [Broker-J][WMC] Remove unused class JsonRest
ab3674c is described below

commit ab3674c2a0d1d1763e9e3492b4749a8eedbc394e
Author: Alex Rudyy <or...@apache.org>
AuthorDate: Wed Jul 3 09:11:04 2019 +0100

    QPID-8314: [Broker-J][WMC] Remove unused class JsonRest
---
 .../main/java/resources/js/qpid/common/JsonRest.js | 74 ----------------------
 1 file changed, 74 deletions(-)

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);
-            }
-        });
-
-    });


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org