summaryrefslogtreecommitdiff
path: root/qpid/java/broker-plugins
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org = rgodfrey = Robert Godfrey rgodfrey@apache.org@apache.org>2014-04-12 23:21:35 +0000
committerRobert Godfrey <rgodfrey@apache.org = rgodfrey = Robert Godfrey rgodfrey@apache.org@apache.org>2014-04-12 23:21:35 +0000
commitb36245c177e3de1aaabecd0d0a6fd94b2b4996fb (patch)
tree94281e721cb9b8f53d3d1f4d49ab93d343ee6ee1 /qpid/java/broker-plugins
parent1e13b57a17562ca81cd9133779ce6fd3d42faee7 (diff)
downloadqpid-python-b36245c177e3de1aaabecd0d0a6fd94b2b4996fb.tar.gz
QPID-5639 : [Java Broker] Correct SASL Mechanism name in client / use consistent name form (SCRAM-SHA-1 not SRAM-SHA1)
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1586908 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/common/util.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js
index 6d83a68fb4..e7f3b00463 100644
--- a/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js
+++ b/qpid/java/broker-plugins/management-http/src/main/java/resources/js/qpid/common/util.js
@@ -140,7 +140,7 @@ define(["dojo/_base/xhr",
util.isProviderManagingUsers = function(type)
{
- return (type === "PlainPasswordFile" || type === "Base64MD5PasswordFile" || type === "SCRAM-SHA1");
+ return (type === "PlainPasswordFile" || type === "Base64MD5PasswordFile" || type === "SCRAM-SHA-1");
};
util.showSetAttributesDialog = function(attributeWidgetFactories, data, putURL, dialogTitle, appendNameToUrl)
@@ -372,4 +372,4 @@ define(["dojo/_base/xhr",
}
return util;
- }); \ No newline at end of file
+ });