Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 3CC91200BC5 for ; Tue, 22 Nov 2016 18:50:58 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 3AC13160B0C; Tue, 22 Nov 2016 17:50:58 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 83BE2160AF1 for ; Tue, 22 Nov 2016 18:50:57 +0100 (CET) Received: (qmail 47162 invoked by uid 500); 22 Nov 2016 17:50:56 -0000 Mailing-List: contact dev-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 dev@camel.apache.org Received: (qmail 47141 invoked by uid 99); 22 Nov 2016 17:50:56 -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; Tue, 22 Nov 2016 17:50:56 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 4C835DFFAB; Tue, 22 Nov 2016 17:50:56 +0000 (UTC) From: zregvart To: dev@camel.apache.org Reply-To: dev@camel.apache.org References: In-Reply-To: Subject: [GitHub] camel pull request #1265: CAMEL-10472 Update Salesforce component to support... Content-Type: text/plain Message-Id: <20161122175056.4C835DFFAB@git1-us-west.apache.org> Date: Tue, 22 Nov 2016 17:50:56 +0000 (UTC) archived-at: Tue, 22 Nov 2016 17:50:58 -0000 GitHub user zregvart reopened a pull request: https://github.com/apache/camel/pull/1265 CAMEL-10472 Update Salesforce component to support recent items REST API Adds support for getting recent items via Salesforce REST API[1]. New operation `recent` was added and can be used like: ...to("salesforce:recent") .split().body() .log("${body.name} at ${body.attributes.url}"); Number of items returned can be limited by the `limit` parameter in URI, body or headers. [1] https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_recent_items.htm You can merge this pull request into a Git repository by running: $ git pull https://github.com/zregvart/camel CAMEL-8396-recent Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/1265.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #1265 ---- commit 9dc42b67d36215b904270d68decbf40264bbac77 Author: Zoran Regvart Date: 2016-11-22T17:24:32Z CAMEL-10472 Update Salesforce component to support recent items REST API This commit adds support for getting recent items via Salesforce REST API[1]. New operation `recent` was added and can be used like: ...to("salesforce:recent") .split().body() .log("${body.name} at ${body.attributes.url}"); Number of items returned can be limited by the `limit` parameter in URI, body or headers. [1] https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/resources_recent_items.htm commit 75df9b6a6e54edce6f39e6d4986d0f06b8119fb4 Author: Zoran Regvart Date: 2016-11-22T17:48:41Z CAMEL-10472 Update Salesforce component to support recent items REST API - added documentation. - updates by camel-package-maven-plugin:prepare-spring-boot-auto-configuration to the SalesforceComponentConfiguration.java. ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---