diff options
| author | Robert Godfrey <rgodfrey@apache.org> | 2014-08-03 23:14:07 +0000 |
|---|---|---|
| committer | Robert Godfrey <rgodfrey@apache.org> | 2014-08-03 23:14:07 +0000 |
| commit | 1912f79bd9b292a2c8ebf79e206992be99658908 (patch) | |
| tree | 45f8d76a31162fb1b24d61ffbc2e67955f0b59a2 /qpid/java/broker-plugins | |
| parent | 50ef5c1742d607847dc0e5080278bcdd7e84b69a (diff) | |
| download | qpid-python-1912f79bd9b292a2c8ebf79e206992be99658908.tar.gz | |
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
Diffstat (limited to 'qpid/java/broker-plugins')
| -rw-r--r-- | qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/management/Broker.js | 6 |
1 files changed, 2 insertions, 4 deletions
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){ |
