From 1912f79bd9b292a2c8ebf79e206992be99658908 Mon Sep 17 00:00:00 2001 From: Robert Godfrey Date: Sun, 3 Aug 2014 23:14:07 +0000 Subject: QPID-5946 : [Java Broker] Add ability to parse PKCS#1 format private keys and improve the presentation of keys stores on the broker tab in the HTTP management UI git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1615462 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/java/resources/js/qpid/management/Broker.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'qpid/java/broker-plugins') diff --git a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js index ff33d8e7c6..3ae4537807 100644 --- a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js +++ b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js @@ -544,10 +544,8 @@ define(["dojo/_base/xhr", that.keyStoresGrid = new UpdatableStore(that.brokerData.keystores, query(".broker-key-stores")[0], [ { name: "Name", field: "name", width: "20%"}, - { name: "Path", field: "path", width: "40%"}, - { name: "Type", field: "keyStoreType", width: "5%"}, - { name: "Key Manager Algorithm", field: "keyManagerFactoryAlgorithm", width: "20%"}, - { name: "Alias", field: "certificateAlias", width: "15%"} + { name: "Type", field: "type", width: "20%"}, + { name: "Description", field: "description", width: "60%"} ], function(obj) { connect.connect(obj.grid, "onRowDblClick", obj.grid, function(evt){ -- cgit v1.2.1