Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-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 18D3E18E32 for ; Mon, 29 Feb 2016 08:32:46 +0000 (UTC) Received: (qmail 69685 invoked by uid 500); 29 Feb 2016 08:32:46 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 69624 invoked by uid 500); 29 Feb 2016 08:32:46 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 69615 invoked by uid 99); 29 Feb 2016 08:32:45 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Feb 2016 08:32:45 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D2CDDDFF75; Mon, 29 Feb 2016 08:32:45 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: acosentino@apache.org To: commits@camel.apache.org Date: Mon, 29 Feb 2016 08:32:45 -0000 Message-Id: <85b69a94040c4d5eb599fd05cdc91c8d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/13] camel git commit: Updated Javadoc. Repository: camel Updated Branches: refs/heads/camel-2.16.x c7e57023e -> 975e88084 Updated Javadoc. Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/2e8a0134 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/2e8a0134 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/2e8a0134 Branch: refs/heads/camel-2.16.x Commit: 2e8a0134f65fc31918655d744051cf9b62a8c6ef Parents: c7e5702 Author: Henryk Konsek Authored: Fri Oct 9 10:11:13 2015 +0200 Committer: Andrea Cosentino Committed: Mon Feb 29 09:26:09 2016 +0100 ---------------------------------------------------------------------- .../main/java/org/apache/camel/component/amqp/AMQPEndpoint.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/2e8a0134/components/camel-amqp/src/main/java/org/apache/camel/component/amqp/AMQPEndpoint.java ---------------------------------------------------------------------- diff --git a/components/camel-amqp/src/main/java/org/apache/camel/component/amqp/AMQPEndpoint.java b/components/camel-amqp/src/main/java/org/apache/camel/component/amqp/AMQPEndpoint.java index ce630f6..4fb5c9e 100644 --- a/components/camel-amqp/src/main/java/org/apache/camel/component/amqp/AMQPEndpoint.java +++ b/components/camel-amqp/src/main/java/org/apache/camel/component/amqp/AMQPEndpoint.java @@ -22,6 +22,10 @@ import org.apache.camel.spi.UriEndpoint; @UriEndpoint(scheme = "amqp", extendsScheme = "jms", title = "AMQP", syntax = "amqp:destinationType:destinationName", consumerClass = JmsConsumer.class, label = "messaging") +/** + * AMQP endpoint. This class extends JmsEndpoint because it uses Apache Qpid JMS-compatible client for + * performing the AMQP connectivity. + */ public class AMQPEndpoint extends JmsEndpoint { }