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 8CDA1200B5A for ; Thu, 4 Aug 2016 15:54:08 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8B53E160AAB; Thu, 4 Aug 2016 13:54:08 +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 D24C1160A6A for ; Thu, 4 Aug 2016 15:54:07 +0200 (CEST) Received: (qmail 18601 invoked by uid 500); 4 Aug 2016 13:54:07 -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 18592 invoked by uid 99); 4 Aug 2016 13:54:07 -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; Thu, 04 Aug 2016 13:54:07 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id BE0E5E0A7D; Thu, 4 Aug 2016 13:54:06 +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 Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: Added required metadata to cachingProvider into camel-jcache Date: Thu, 4 Aug 2016 13:54:06 +0000 (UTC) archived-at: Thu, 04 Aug 2016 13:54:08 -0000 Repository: camel Updated Branches: refs/heads/camel-2.17.x b88d365ef -> 0dbf59bf2 Added required metadata to cachingProvider into camel-jcache Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/0dbf59bf Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/0dbf59bf Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/0dbf59bf Branch: refs/heads/camel-2.17.x Commit: 0dbf59bf2c9923eacfb6428b178081f334144f1b Parents: b88d365 Author: Andrea Cosentino Authored: Thu Aug 4 15:49:36 2016 +0200 Committer: Andrea Cosentino Committed: Thu Aug 4 15:53:47 2016 +0200 ---------------------------------------------------------------------- .../org/apache/camel/component/jcache/JCacheConfiguration.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/0dbf59bf/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheConfiguration.java b/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheConfiguration.java index 0002845..eadbf54 100644 --- a/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheConfiguration.java +++ b/components/camel-jcache/src/main/java/org/apache/camel/component/jcache/JCacheConfiguration.java @@ -31,6 +31,7 @@ import javax.cache.integration.CacheLoader; import javax.cache.integration.CacheWriter; import org.apache.camel.CamelContext; +import org.apache.camel.spi.Metadata; import org.apache.camel.spi.UriParam; import org.apache.camel.spi.UriParams; import org.apache.camel.util.EndpointHelper; @@ -38,6 +39,7 @@ import org.apache.camel.util.EndpointHelper; @UriParams public class JCacheConfiguration { @UriParam(label = "advanced") + @Metadata(required = "true") private String cachingProvider; @UriParam(label = "advanced")