diff options
author | Andrew Stitcher <astitcher@apache.org> | 2011-11-30 19:48:47 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2011-11-30 19:48:47 +0000 |
commit | a3f0153ea94ad6a9dddef87947c384f0798f7ec8 (patch) | |
tree | a2f3c6b8d3d90b757ad59a1f6e3973303f00a76a | |
parent | 04365809ba531d0e41b278b7962a6fec21908aa2 (diff) | |
download | qpid-python-a3f0153ea94ad6a9dddef87947c384f0798f7ec8.tar.gz |
QPID-3654: ANONYMOUS SASL mechanism does not work on Java client
Added a CallbackHandler for the ANONYMOUS mechanism (even though
it should never be called)
- This is necessary because the client uses the map of callback
handlers to construct the list of available mechanisms.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1208733 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | java/client/src/main/java/org/apache/qpid/client/security/CallbackHandlerRegistry.properties | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/java/client/src/main/java/org/apache/qpid/client/security/CallbackHandlerRegistry.properties b/java/client/src/main/java/org/apache/qpid/client/security/CallbackHandlerRegistry.properties index b04a756e80..8855a040ea 100644 --- a/java/client/src/main/java/org/apache/qpid/client/security/CallbackHandlerRegistry.properties +++ b/java/client/src/main/java/org/apache/qpid/client/security/CallbackHandlerRegistry.properties @@ -6,9 +6,9 @@ # 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 @@ -30,3 +30,4 @@ CRAM-MD5-HASHED.3=org.apache.qpid.client.security.UsernameHashedPasswordCallback CRAM-MD5.4=org.apache.qpid.client.security.UsernamePasswordCallbackHandler AMQPLAIN.5=org.apache.qpid.client.security.UsernamePasswordCallbackHandler PLAIN.6=org.apache.qpid.client.security.UsernamePasswordCallbackHandler +ANONYMOUS.7=org.apache.qpid.client.security.UsernamePasswordCallbackHandler |