Return-Path: X-Original-To: apmail-camel-users-archive@www.apache.org Delivered-To: apmail-camel-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0E18810904 for ; Sun, 20 Oct 2013 20:04:57 +0000 (UTC) Received: (qmail 77461 invoked by uid 500); 20 Oct 2013 20:03:47 -0000 Delivered-To: apmail-camel-users-archive@camel.apache.org Received: (qmail 77388 invoked by uid 500); 20 Oct 2013 20:03:36 -0000 Mailing-List: contact users-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: users@camel.apache.org Delivered-To: mailing list users@camel.apache.org Received: (qmail 77313 invoked by uid 99); 20 Oct 2013 20:03:13 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Oct 2013 20:03:13 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of john.d.ament@gmail.com designates 209.85.214.181 as permitted sender) Received: from [209.85.214.181] (HELO mail-ob0-f181.google.com) (209.85.214.181) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Oct 2013 20:03:06 +0000 Received: by mail-ob0-f181.google.com with SMTP id va2so4908447obc.26 for ; Sun, 20 Oct 2013 13:02:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=9wQvoiJp7SFGBtfCgq5S3NczjYFN9h13mWV+8cCkv3g=; b=ZoK35zLN8Z6FkJ4YP9xGEiS3Ge7pmpLyzyrI4Sb8vKfc2IUm2ySAW4rBN1n98vtNts zAHS0/6LhRjoXjWK+1dEUZ4A+dwMaSfuXpUQNhT5D+xWW2RUETpWr+uEXHVjMtKc3aIv aELGtQFdTYWw76hfKpdJX5A/MNCAjg222Xz+DJz6wWxy23FbogomJ38en37AhA0VlhBA X3L/SYc3b9xamuEiQ9l8w0V5RRjCI2M+7Tfp//SmfuU6FzhhsgppVP2LifisqDIHVOfx d5fal2XqDpSmWoa7j03Hqq3Db06RuW69SanSC+eycNR/1X7EhsuKjivJgsTzv+A8DKrk 2Inw== MIME-Version: 1.0 X-Received: by 10.60.40.5 with SMTP id t5mr4140514oek.26.1382299365269; Sun, 20 Oct 2013 13:02:45 -0700 (PDT) Received: by 10.182.135.69 with HTTP; Sun, 20 Oct 2013 13:02:45 -0700 (PDT) Date: Sun, 20 Oct 2013 16:02:45 -0400 Message-ID: Subject: Writing a Component - passing in arguments From: "John D. Ament" To: users@camel.apache.org Content-Type: text/plain; charset=ISO-8859-1 X-Virus-Checked: Checked by ClamAV on apache.org Let's say that I'm looking to write a component. I want my component to understand the Object... params that are passed in to it, such that instead of camel processing: toF("foo://%s","something") I want the "something" to be passed to my component instead. Is this possible?