Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E1B1698BE for ; Mon, 14 Nov 2011 16:23:39 +0000 (UTC) Received: (qmail 18074 invoked by uid 500); 14 Nov 2011 16:23:39 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 17955 invoked by uid 500); 14 Nov 2011 16:23:39 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 17948 invoked by uid 99); 14 Nov 2011 16:23:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Nov 2011 16:23:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Nov 2011 16:23:37 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 1F81023889BB for ; Mon, 14 Nov 2011 16:23:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1201775 - in /cxf/branches/2.4.x-fixes: ./ rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSConfiguration.java Date: Mon, 14 Nov 2011 16:23:16 -0000 To: commits@cxf.apache.org From: dkulp@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111114162316.1F81023889BB@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dkulp Date: Mon Nov 14 16:23:15 2011 New Revision: 1201775 URL: http://svn.apache.org/viewvc?rev=1201775&view=rev Log: Merged revisions 1190183 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1190183 | cschneider | 2011-10-28 03:32:18 -0400 (Fri, 28 Oct 2011) | 1 line Added documentation ........ Modified: cxf/branches/2.4.x-fixes/ (props changed) cxf/branches/2.4.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSConfiguration.java Propchange: cxf/branches/2.4.x-fixes/ ('svn:mergeinfo' removed) Propchange: cxf/branches/2.4.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.4.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSConfiguration.java URL: http://svn.apache.org/viewvc/cxf/branches/2.4.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSConfiguration.java?rev=1201775&r1=1201774&r2=1201775&view=diff ============================================================================== --- cxf/branches/2.4.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSConfiguration.java (original) +++ cxf/branches/2.4.x-fixes/rt/transports/jms/src/main/java/org/apache/cxf/transport/jms/JMSConfiguration.java Mon Nov 14 16:23:15 2011 @@ -78,7 +78,15 @@ public class JMSConfiguration implements private String durableSubscriptionName; private String targetDestination; + + /** + * Destination name to listen on for reply messages + */ private String replyDestination; + + /** + * Destination name to send out as replyTo address in the message + */ private String replyToDestination; private String messageType = JMSConstants.TEXT_MESSAGE_TYPE; private boolean pubSubDomain;