diff options
| author | Weston M. Price <wprice@apache.org> | 2012-05-03 14:23:03 +0000 |
|---|---|---|
| committer | Weston M. Price <wprice@apache.org> | 2012-05-03 14:23:03 +0000 |
| commit | a6c3d4d239970810b979abd6bb4f00a206cf299d (patch) | |
| tree | 3db393656f2cba8b5bd3416850ed7915666e5d61 /qpid/java/jca/example | |
| parent | 353418fa6793c7c6da94fef2c08500a965b800fc (diff) | |
| download | qpid-python-a6c3d4d239970810b979abd6bb4f00a206cf299d.tar.gz | |
QPID-3878:
QpidActivation should use connection per inbound listener
Added ability to configure inbound listener multiplex behavior
Added new property to ra.xml
Updated README.txt to reflect changes
Added Serialization unit tests for ActivationSpec and
ResourceAdapter
Contributions from Kevin Conner
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1333473 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/jca/example')
| -rw-r--r-- | qpid/java/jca/example/src/main/java/org/apache/qpid/jca/example/ejb/QpidHelloListenerBean.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/qpid/java/jca/example/src/main/java/org/apache/qpid/jca/example/ejb/QpidHelloListenerBean.java b/qpid/java/jca/example/src/main/java/org/apache/qpid/jca/example/ejb/QpidHelloListenerBean.java index 42a9ab6f60..75e0acab79 100644 --- a/qpid/java/jca/example/src/main/java/org/apache/qpid/jca/example/ejb/QpidHelloListenerBean.java +++ b/qpid/java/jca/example/src/main/java/org/apache/qpid/jca/example/ejb/QpidHelloListenerBean.java @@ -66,10 +66,6 @@ public class QpidHelloListenerBean implements MessageListener try { - _log.info(message.getJMSDestination().getClass().getName()); - - javax.jms.Queue queue = (javax.jms.Queue)message.getJMSDestination(); - _log.info("QueueName is: " + queue.getQueueName()); if(message instanceof TextMessage) { String content = ((TextMessage)message).getText(); |
