Repository: camel Updated Branches: refs/heads/camel-2.16.x aead21aaa -> 8fb98e907
Component docs Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/81b2e7b9 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/81b2e7b9 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/81b2e7b9 Branch: refs/heads/camel-2.16.x Commit: 81b2e7b9bcbfec51488c96803267bb279f6c9e9c Parents: aead21a Author: Claus Ibsen <davscl...@apache.org> Authored: Thu Jan 7 10:26:07 2016 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Thu Jan 7 10:54:04 2016 +0100 ---------------------------------------------------------------------- .../camel/component/infinispan/InfinispanConfiguration.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/81b2e7b9/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java ---------------------------------------------------------------------- diff --git a/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java b/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java index 1cf5a9e..a738ce4 100644 --- a/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java +++ b/components/camel-infinispan/src/main/java/org/apache/camel/component/infinispan/InfinispanConfiguration.java @@ -28,17 +28,18 @@ import org.infinispan.commons.api.BasicCacheContainer; @UriParams public class InfinispanConfiguration { - private BasicCacheContainer cacheContainer; @UriPath @Metadata(required = "true") private String host; @UriParam + private BasicCacheContainer cacheContainer; + @UriParam private String cacheName; @UriParam(label = "producer", defaultValue = "put", enums = "put,putAll,putIfAbsent,putAsync,putAllAsync,putIfAbsentAsync,get,containsKey,containsValue,remove,removeAsync," - + "replace,replaceAsync,clear,size") + + "replace,replaceAsync,clear,clearAsync,size") private String command; @UriParam(label = "consumer", defaultValue = "true") private boolean sync = true; - @UriParam(label = "consumer") + @UriParam(label = "consumer", javaType = "java.lang.String") private Set<String> eventTypes; public String getCommand() {