[GitHub] camel pull request #2558: CAMEL-12087: camel-core: WARN No CamelContext defi...

2018-10-09 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2558


---


[GitHub] camel pull request #2558: CAMEL-12087: camel-core: WARN No CamelContext defi...

2018-10-09 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/2558

CAMEL-12087: camel-core: WARN No CamelContext defined yet so cannot inject 
into bean



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-12087

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/2558.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 #2558


commit fda0ce6d16f812b4f1f60a87a4b417786250b69f
Author: lburgazzoli 
Date:   2018-10-09T14:06:13Z

CAMEL-12087: camel-core: WARN No CamelContext defined yet so cannot inject 
into bean




---


[GitHub] camel pull request #2433: CAMEL-12649: camel-braintree - Upgraded Braintree ...

2018-07-20 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2433


---


[GitHub] camel pull request #2362: CAMEL-12534: create camel-testcontainers

2018-06-05 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2362


---


[GitHub] camel pull request #2362: CAMEL-12534: create camel-testcontainers

2018-06-05 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/2362

CAMEL-12534: create camel-testcontainers

Initial bits of testcontainers integration with camel test suite.

### WHAT'S NEW
 
- two new modules:
- camel-testcontainers
- camel-testcontainers-spring
- two new test support class:
- ContainerAwareTestSupport
- ContainerAwareSpringTestSupport
- a new properties function is automatically added to the camel-context 
while testing with ContainerAwareTestSupport and 
ContainerAwareSpringTestSupport so you can use proeprty placeholders to get 
some informations about the containers:
  ```xml
  http://{{container:host:consul}}:{{container:port:8500@consul}}"/>
  ```

### NOTES

1. the life-cycle of the containers is bout to the camel context so I had 
to change the way class resources are cleaned up so instead of using junit's 
@AfterClass annotation there is a new reference counted based implementation, 
see CamelTestSupport
2. consul related component have been migrated to camel-testcontainer and 
camel-testcontainers-spring to validate the implementation


Any feedback is very velcome.
 

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-12534

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/2362.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 #2362


commit 8577c78534005fd45aa20605fd79b4d6d2317ef4
Author: lburgazzoli 
Date:   2018-05-31T22:17:25Z

CAMEL-12534: create camel-testcontainers




---


[GitHub] camel pull request #2353: camel service registry

2018-05-30 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2353


---


[GitHub] camel pull request #2353: camel service registry

2018-05-29 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/2353

camel service registry

This PR is the initial work to ease the process to expose routes as 
services [CAMEL-10793](https://issues.apache.org/jira/browse/CAMEL-10793).

A simple example is:

```java
from("service:my-service:undertow:http://0.0.0.0:8080/the/context/path;)
.log("Route ${routeId} has been invoked");
```

As undertow component, supports service registration, this endpoint will be 
registered to a given Service Registry (we now have a binding for consul, 
zookeeper and spring-cloud) as `my-service` along with some metadata such as 
the protocol and the context path. This allow to invoke the service on another 
jvm instance by name, like:

```java
from("direct:call")
.serviceCall("my-service")
```

**NOTE**: The implementation is not yet complete so you still need to do 
some manual configuration and the number of supported component that support 
service registration is limited to those extending `camel-http-common` and 
`undertow`  .
**NOTE**: integration with spring-cloud is not as easy as it should be so I 
had to introduce two new modules: camel-spring-cloud-zookeeper and 
camel-spring-cloud-consul.

Any feedback would be really appreciated.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-12485-pr

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/2353.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 #2353


commit c927df33aca97744ede41b76e726d4ecef8d3563
Author: lburgazzoli 
Date:   2018-05-29T15:08:00Z

CAMEL-12485: camel cloud : create camel-service component

commit 349639992a22a5c67978c3620ac2af0f003c1d86
Author: lburgazzoli 
Date:   2018-05-10T16:33:38Z

CAMEL-12502: camel cloud : create a service route policy

commit 95dbeb2794d23538a218a275896a51ad723db550
Author: lburgazzoli 
Date:   2018-05-10T20:31:49Z

CAMEL-12485: camel cloud : create camel-service component

commit dfb11b311717cf25068728703ce1542af087cd69
Author: lburgazzoli 
Date:   2018-05-11T10:33:33Z

CAMEL-12505: service-call : include ServiceDefinition metatdata when 
computing the final URI

commit 8f5486d5e8920daa2d80367a0148c6f4aec5f059
Author: lburgazzoli 
Date:   2018-05-14T12:49:37Z

CAMEL-12485: camel cloud : create camel-service component

commit 3e368ca037bc243a8d6678bfcd734f485e8c319c
Author: lburgazzoli 
Date:   2018-05-15T13:06:54Z

fix consul kv test

commit c08e704a29954c41d2a13c690424df68bd951ce3
Author: lburgazzoli 
Date:   2018-05-17T15:02:40Z

CAMEL-12518: camel cloud : leverage spring-cloud ServiceRegistry to 
register routes

commit 4988f0c4ff40f83c6d9fe18f1b6d5be6a3a17ad4
Author: lburgazzoli 
Date:   2018-05-23T10:57:51Z

CAMEL-12502: camel cloud : create a service route policy

commit ea88ec23da3e9e886e2cdbbe87992615c11b6c6d
Author: lburgazzoli 
Date:   2018-05-23T14:35:40Z

CAMEL-12531: camel cloud : create a spring cloud based camel-service example

commit 5ec6c5ed1f10c369e23296aba2671577fb2d3334
Author: lburgazzoli 
Date:   2018-05-23T18:23:40Z

CAMEL-12518: camel cloud : leverage spring-cloud ServiceRegistry to 
register routes

commit 086bdfff5fa13e58976f6a77b5b0ef3e05769046
Author: lburgazzoli 
Date:   2018-05-23T18:25:12Z

CAMEL-12531: camel cloud : create a spring cloud based camel-service example

commit bbc6e5fc7fe686d37ee085bd4600dfd1166c28b2
Author: lburgazzoli 
Date:   2018-05-24T13:16:08Z

CAMEL-12518: camel cloud : leverage spring-cloud ServiceRegistry to 
register routes

commit b02d2da88b9459149dcedd1f37d83f5c63eef70b
Author: lburgazzoli 
Date:   2018-05-28T11:38:55Z

CAMEL-12502: camel cloud : create a service route policy

commit b412b6282298fe03e9bf80d4cccae675130a27a5
Author: lburgazzoli 
Date:   2018-05-28T13:00:08Z

CAMEL-12502: camel cloud : create a service route policy

commit 2adbaab0ebda6a5c6a27dbd2ccd29ec558b09ab3
Author: lburgazzoli 
Date:   2018-05-28T13:03:57Z

CAMEL-12502: camel cloud : create a service route policy

commit 14666bfe1b3d81458aee1cf383b7262a513c61e8
Author: lburgazzoli 
Date:   2018-05-28T14:08:27Z

service registry doc

commit c09d5fc8ce116fe11d0726cd1839688d9eaf3103
Author: lburgazzoli 
Date:   2018-05-29T14:48:19Z

service registry

commit 67a86f57424b976053d86f316b64d44e27437b51
Author: lburgazzoli 
Date:   2018-05-29T15:14:24Z

fix typos

commit 2a7e54e9fea7d8e00d8e104a3b14d3756e33a6dc
Author: lburgazzoli 
Date:   2018-05-29T16:01:31Z

regen




---


[GitHub] camel pull request #2352: camel service registry

2018-05-29 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2352


---


[GitHub] camel pull request #2352: camel service registry

2018-05-29 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/2352

camel service registry

This PR is the initial work to ease the process to expose routes as 
services [CAMEL-10793](https://issues.apache.org/jira/browse/CAMEL-10793).

A simple example is:

```java
from("service:my-service:undertow:http://0.0.0.0:8080/the/context/path;)
.log("Route ${routeId} has been invoked");
```

As undertow component, supports service registration, this endpoint will be 
registered to a given Service Registry (we now have a binding for consul, 
zookeeper and spring-cloud) as `my-service` along with some metadata such as 
the protocol and the context path. This allow to invoke the service on another 
jvm instance by name, like:

```java
from("direct:call")
.serviceCall("my-service")
```

**NOTE**: The implementation is not yet complete so you still need to do 
some manual configuration and the number of supported component that support 
service registration is limited to those extending `camel-http-common` and 
`undertow`  .
**NOTE**: integration with spring-cloud is not as easy as it should be so I 
had to introduce two new modules: camel-spring-cloud-zookeeper and 
camel-spring-cloud-consul.

Any feedback would be really appreciated.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-12485

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/2352.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 #2352


commit 8959683c39d8d8ff368c91fd2362dc149149cbd3
Author: lburgazzoli 
Date:   2018-05-07T17:00:52Z

CAMEL-12485: camel cloud : create camel-service component

commit cbdb3b64c1c79886d17337517f498fb7804f5fed
Author: lburgazzoli 
Date:   2018-05-10T16:33:38Z

CAMEL-12502: camel cloud : create a service route policy

commit 07594d2fa19d8987eca783a2a7afab70846094b0
Author: lburgazzoli 
Date:   2018-05-10T20:31:49Z

CAMEL-12485: camel cloud : create camel-service component

commit 54b1405759298991a116502a6e60d203f3e91965
Author: lburgazzoli 
Date:   2018-05-11T10:33:33Z

CAMEL-12505: service-call : include ServiceDefinition metatdata when 
computing the final URI

commit 4468cc1e54f0fc2314d34b0172d06c5548de4bc4
Author: lburgazzoli 
Date:   2018-05-14T12:49:37Z

CAMEL-12485: camel cloud : create camel-service component

commit bb9e10539ff0cdcc26539981534bdf39205b760e
Author: lburgazzoli 
Date:   2018-05-15T13:06:54Z

fix consul kv test

commit e62ffebe643eef2897cd393a37a1a7aa4248ca94
Author: lburgazzoli 
Date:   2018-05-17T15:02:40Z

CAMEL-12518: camel cloud : leverage spring-cloud ServiceRegistry to 
register routes

commit e10065dcf25a0ae61a2eeeaa2c20157c577945f3
Author: lburgazzoli 
Date:   2018-05-23T10:57:51Z

CAMEL-12502: camel cloud : create a service route policy

commit 5079e5335a8ee0a92fa70c4f1ff29006c2d51165
Author: lburgazzoli 
Date:   2018-05-23T14:35:40Z

CAMEL-12531: camel cloud : create a spring cloud based camel-service example

commit 51ed886d139a11e9d83e57d8d3806fdbccd92f5f
Author: lburgazzoli 
Date:   2018-05-23T18:23:40Z

CAMEL-12518: camel cloud : leverage spring-cloud ServiceRegistry to 
register routes

commit a887bbe8b07871e2f7713e6a89f2febcf4707f33
Author: lburgazzoli 
Date:   2018-05-23T18:25:12Z

CAMEL-12531: camel cloud : create a spring cloud based camel-service example

commit ad6e928bd388eeee070020793f9c6bc72c04758a
Author: lburgazzoli 
Date:   2018-05-24T13:16:08Z

CAMEL-12518: camel cloud : leverage spring-cloud ServiceRegistry to 
register routes

commit 2611407c6f996a010aa5ca240c21652b45502c82
Author: lburgazzoli 
Date:   2018-05-28T11:38:55Z

CAMEL-12502: camel cloud : create a service route policy

commit aaceeea8250b928fb870408cc7c3aab13e9d7a08
Author: lburgazzoli 
Date:   2018-05-28T13:00:08Z

CAMEL-12502: camel cloud : create a service route policy

commit 1b655e17a7d01f8083b5cd2d76b837d279ded4bb
Author: lburgazzoli 
Date:   2018-05-28T13:03:57Z

CAMEL-12502: camel cloud : create a service route policy

commit fee9b5c3b95c741526e0c768270ce0f9a0695679
Author: lburgazzoli 
Date:   2018-05-28T14:08:27Z

service registry doc




---


[GitHub] camel pull request #2342: CAMEL-12511: Init scheduledExecutorService before ...

2018-05-15 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2342


---


[GitHub] camel pull request #2339: CAMEL-12463: camel-core: allow to add metadata/pro...

2018-05-15 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2339


---


[GitHub] camel pull request #2339: CAMEL-12463: camel-core: allow to add metadata/pro...

2018-05-14 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/2339

CAMEL-12463: camel-core: allow to add metadata/properties to a route



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-12463

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/2339.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 #2339


commit 90e230ce400d4f95a2a8b9a6a59a8a09cb082106
Author: lburgazzoli <lburgazzoli@...>
Date:   2018-05-14T14:45:06Z

CAMEL-12463: camel-core: allow to add metadata/properties to a route




---


[GitHub] camel pull request #2328: CAMEL-10806: Add a RxJava2 module

2018-05-08 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2328


---


[GitHub] camel pull request #2323: CAMEL-12459:camel-spring-boot - Add route group to...

2018-05-07 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2323


---


[GitHub] camel pull request #2299: CAMEL-11669: Routes : add 'group'

2018-04-18 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2299


---


[GitHub] camel pull request #2299: CAMEL-11669: Routes : add 'group'

2018-04-17 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/2299

CAMEL-11669: Routes : add 'group'



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-11669

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/2299.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 #2299


commit 45bcd5b861e2734844c8c92219510174fe525860
Author: lburgazzoli <lburgazzoli@...>
Date:   2018-04-17T10:52:17Z

CAMEL-11669: Routes : add 'group'




---


[GitHub] camel pull request #2296: CAMEL-12448 - camel-consul: filter health checks b...

2018-04-16 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2296


---


[GitHub] camel pull request #2194: CAMEL-12197: Automatic discovery of LogListener an...

2018-01-26 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2194


---


[GitHub] camel pull request #2194: CAMEL-12197: Automatic discovery of LogListener an...

2018-01-26 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/2194

CAMEL-12197: Automatic discovery of LogListener and UuidGenerator



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-12197

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/2194.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 #2194


commit eaac8e9fe002fbcd742b8b21691be1d64a575b00
Author: lburgazzoli <lburgazzoli@...>
Date:   2018-01-26T12:35:48Z

CAMEL-12197: Automatic discovery of LogListener and UuidGenerator




---


[GitHub] camel pull request #2113: Revert "CAMEL-11532 Java DSL enhancement to accept...

2017-11-24 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/2113

Revert "CAMEL-11532 Java DSL enhancement to accept supplier and function 
arguments"

Reverts apache/camel#2098

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/apache/camel revert-2098-CAMEL-11532

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/2113.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 #2113


commit 291c546db3fa46b8e8d1a060aed3f25666d84c03
Author: Luca Burgazzoli <lburgazz...@users.noreply.github.com>
Date:   2017-11-24T13:39:05Z

Revert "CAMEL-11532 Java DSL enhancement to accept supplier and function 
arguments (#2098)"

This reverts commit 1a26e25343803e32aa88503831e843e6766ee8d9.




---


[GitHub] camel pull request #2098: CAMEL-11532 Java DSL enhancement to accept supplie...

2017-11-24 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/2098


---


[GitHub] camel pull request #1671: WIP - CAMEL-10807 : Create camel-reactor component

2017-05-05 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/1671


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request #1671: WIP - CAMEL-10807 : Create camel-reactor component

2017-05-02 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/1671

WIP - CAMEL-10807 : Create camel-reactor component

This PR aims to provide an implementation of 
[CamelReactiveStreamsService](https://github.com/apache/camel/blob/master/components/camel-reactive-streams/src/main/java/org/apache/camel/component/reactive/streams/api/CamelReactiveStreamsService.java)
 based on [Spring's Reactor Core](https://projectreactor.io).

@nicolaferraro would you mind do a second review before mergin it ?


You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-10807

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/1671.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 #1671


commit 76c79e651d9f47b77fd41d084c50e6c83986569d
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2017-03-29T16:08:35Z

CAMEL-10807: Create camel-reactor component

commit 403a768bd3396a25c79f47539a15804c7a3ab4ae
Author: Nicola Ferraro <ni.ferr...@gmail.com>
Date:   2017-04-27T16:03:34Z

CAMEL-10807: fixing backpressure

commit 44338f174125d13fa5bd34b2c112852e81458364
Author: Nicola Ferraro <ni.ferr...@gmail.com>
Date:   2017-04-28T00:13:43Z

CAMEL-10807: upgraded to reactor 3.0.7 to fix a bug with emitter processor

commit 18d1efc997efd2e9648532a7035f157f44fd9b4f
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2017-05-02T11:56:24Z

CAMEL-10807: Create camel-reactor component




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request #1604: WIP - CAMEL-11108: camel-infinispan : change the u...

2017-04-12 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/1604


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request #1603: WIP - CAMEL-10287: Infinispan RoutePolicy to have ...

2017-04-07 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/1603


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request #1604: WIP - CAMEL-11108: camel-infinispan : change the u...

2017-04-06 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/1604

WIP - CAMEL-11108: camel-infinispan : change the uri syntax from 
infinispan:hostName to infinispan:cacheName

@tristantarrant may you check if I missed something on infinispan side 

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-11108

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/1604.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 #1604


commit 14fa5e5156e3e0e0e76cfdd23427a06febc27714
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2017-04-06T13:11:54Z

CAMEL-11108: camel-infinispan : change the uri syntax from 
infinispan:hostName to infinispan:cacheName




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request #1603: WIP - CAMEL-10287: Infinispan RoutePolicy to have ...

2017-04-06 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/1603

WIP - CAMEL-10287: Infinispan RoutePolicy to have one route being master, 
and others as slaves

@tristantarrant may you check if I missed something on infinispan side 

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-10287

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/1603.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 #1603


commit 7f0b1ef1dc7c4fa9ee346176ba7049464a361fad
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2017-04-05T16:37:21Z

CAMEL-10287: Infinispan RoutePolicy to have one route being master, and 
others as slaves




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request #1436: CAMEL-10542: DataFormat from registry is used for ...

2017-01-31 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/1436

CAMEL-10542: DataFormat from registry is used for every dataformat 
operation (marshal/unmarshal)

I'm opening this PR for review as there are some changes on CamelContext 
level so I'd like to gather some feedback.

As today the DataFormat resolution works as follow:
1. search int the registry if a DataFormat instance exists for a given name
2. if not found in registry create a new one from the resources 
(META-INF/services/...)

This my cause issues as per CAMEL-10542

The proposed solution introduces a new DataFormatFactory and a new method 
to DataFormatResolver to have a way to explicit request for a new instance so 
it looks like:

```java
public interface DataFormatResolver {
// Resolve using registry then fallback to createDataFormat
DataFormat resolveDataFormat(String name, CamelContext context);

// Resolve factory using registry or fallback to resources
DataFormat createDataFormat(String name, CamelContext context);
} 
```

Model's DataFormatDefinition is now using createDataFormat except for 
CustomDataFormat which indeed is supposed to eventually share the same data 
format. 

I still need to implement some stuffs but the basic concept is here.
Any feedback would be really appreciated.


You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-10542

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/1436.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 #1436






---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9602 - ProducerTemplateBuilder

2016-04-27 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/876


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9587 - camel-restlet - Make it easy to t...

2016-04-08 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/933


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9587 - camel-restlet - Make it easy to t...

2016-04-06 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/933

CAMEL-9587 - camel-restlet - Make it easy to turn on gson or jackson

With this PR one can explicit set the converters to use with:

```

from("restlet:?enabledConverters=JacksonConverter,my.company.MyConverter")
```

Notes:
- the converted need to be installed
- by default all the converter found by the Engine are enabled
- converters not used are removed from the engine which is a singleton s

To make it easy to add Jackson/Gson extension there are now two more 
features:
- camel-restlet-jackson
- camel-restlet-gson

Hope it cope with the requirements.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9587

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/933.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 #933


commit 33f1135f646f9d9dc149a41f5b8ad5faa7656b8c
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-04-06T10:57:03Z

CAMEL-9587 - camel-restlet - Make it easy to turn on gson or jackson




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-5690 - Using bean component with beans t...

2016-04-05 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/929

CAMEL-5690 - Using bean component with beans that implement Service from 
Camel should have the lifecycle callbacks invoked



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-5690

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/929.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 #929






---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9776 : camel-braintree: add uri param to...

2016-03-31 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/922


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9750 : Tests should not log on stdout by...

2016-03-24 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/914


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9737 : add an option to configure defaul...

2016-03-24 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/916


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9737 : add an option to configure defaul...

2016-03-24 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/916

CAMEL-9737 : add an option to configure default resource to access



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9737-fix

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/916.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 #916


commit 8db5c3cc92822c9f95f68244a3581d38fe941c0a
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-24T09:32:15Z

CAMEL-9737 : add an option to configure default resource to access




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9750 : Tests should not log on stdout by...

2016-03-24 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/914

CAMEL-9750 : Tests should not log on stdout by default



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9750

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/914.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 #914


commit 44c426f36b19b98bbc9cb3164bdf8a35264d0c26
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-24T07:05:34Z

CAMEL-9750 : Tests should not log on stdout by default




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9740 : Improve camel-infinispan

2016-03-22 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/913

CAMEL-9740 : Improve camel-infinispan



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9740

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/913.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 #913


commit 4057c9cf6e48bcea8b2fa98357f5591123aa7788
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-11T09:48:26Z

CAMEL-9740 : Improve camel-infinispan




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9737 - Create camel component for Servic...

2016-03-22 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/912


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9737 - Create camel component for Servic...

2016-03-22 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/912

CAMEL-9737 - Create camel component for ServiceNow



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9737

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/912.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 #912


commit 597bcc6fd5aef465d12d21da366847a162f90b54
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-22T09:21:59Z

CAMEL-9737 - Create camel component for ServiceNow




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9685 - camel-infinispan : support contin...

2016-03-11 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/896


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8211 - Camel commands - camel-component-...

2016-03-11 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/895


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9691 - camel-infinispan : cleanup uri op...

2016-03-10 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/892


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9684 - camel-infinispan : add support fo...

2016-03-10 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/891


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9693 : camel-infinispan : disable buildi...

2016-03-10 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/893


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9693 : camel-infinispan : disable buildi...

2016-03-10 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/893

CAMEL-9693 : camel-infinispan : disable building tests on JDK < 1.8



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9693

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/893.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 #893


commit 44deb074a0749a00d55b4ec73523d495f467
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-10T10:56:00Z

CAMEL-9693 : camel-infinispan : disable building tests on JDK < 1.8




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9691 - camel-infinispan : cleanup uri op...

2016-03-10 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/892

CAMEL-9691 - camel-infinispan : cleanup uri options



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9691

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/892.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 #892


commit 2034a97043016df83978878199a5c2914368ef3c
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-10T09:48:43Z

CAMEL-9691 - camel-infinispan : cleanup uri options




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9684 - camel-infinispan : add support fo...

2016-03-09 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/891

CAMEL-9684 - camel-infinispan : add support for setting query builder…

… in InifispanConfiguration

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9684

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/891.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 #891


commit 2d6140d3723a75d7d2e4286589d194aadb19445a
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-09T11:35:36Z

CAMEL-9684 - camel-infinispan : add support for setting query builder in 
InifispanConfiguration




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9681 - Add an option to enable/disable c...

2016-03-08 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/890

CAMEL-9681 - Add an option to enable/disable cache creation



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9681

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/890.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 #890


commit ef4cc80b8b0afa2618a026ff1cffabd27769a826
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-08T14:39:31Z

CAMEL-9681 - Add an option to enable/disable cache creation




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9668 - Add lzf to DataFormatsDefinition

2016-03-04 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/884


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9661 - YAML Data Format

2016-03-04 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/883


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9668 - Add lzf to DataFormatsDefinition

2016-03-03 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/884

CAMEL-9668 - Add lzf to DataFormatsDefinition



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9668

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/884.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 #884


commit 6a250904ecaf6ab1cfd595f6f537e293067d381c
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-03T16:39:45Z

CAMEL-9668 - Add lzf to DataFormatsDefinition




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9661 - YAML Data Format

2016-03-03 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/883

CAMEL-9661 - YAML Data Format



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9661

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/883.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 #883


commit fe8e1e939aaa3d29128af312880fa9b8d1ccbad2
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-02T15:17:55Z

CAMEL-9661 - YAML Data Format




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9077 - camel-bindy - Wonder if it output...

2016-03-03 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/875


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9661 - YAML Data Format

2016-03-03 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/883


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9661 - YAML Data Format

2016-03-03 Thread lburgazzoli
GitHub user lburgazzoli reopened a pull request:

https://github.com/apache/camel/pull/883

CAMEL-9661 - YAML Data Format



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9661

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/883.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 #883


commit fe8e1e939aaa3d29128af312880fa9b8d1ccbad2
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-02T15:17:55Z

CAMEL-9661 - YAML Data Format




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9077 - camel-bindy - Wonder if it output...

2016-03-01 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/875

CAMEL-9077 - camel-bindy - Wonder if it outputs numbers using thousand 
separators

It does not appear to happen anymore, however I've added a test case 

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9077

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/875.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 #875


commit aa4f8a5937615b39f3ea018f7f487de386f6a3a1
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-03-01T11:08:39Z

CAMEL-9077 - camel-bindy - Wonder if it outputs numbers using thousand 
separators




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8258 - Support Streaming from User Endpo...

2016-02-29 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/874


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8258 - Support Streaming from User Endpo...

2016-02-29 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/874

CAMEL-8258 - Support Streaming from User Endpoint including Direct Me…

…ssages

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-8258

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/874.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 #874


commit b8fba9872b64662c31f1f35f7f1342d79bbedf58
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-26T11:36:21Z

CAMEL-8258 - Support Streaming from User Endpoint including Direct Messages




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9180 - camel-cmis Lazy Initialize Sessio...

2016-02-26 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/869


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9180 - camel-cmis Lazy Initialize Sessio...

2016-02-25 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/869

CAMEL-9180 - camel-cmis Lazy Initialize Session Facade



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9180

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/869.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 #869


commit c388218f6dbb9a76e87f31ec9a7bd56269b774c4
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-25T17:44:58Z

CAMEL-9180 - camel-cmis Lazy Initialize Session Facade




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9644 - improve camel-hbase component

2016-02-25 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/868


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9285 - controlbus - Allow to grab curren...

2016-02-25 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/867


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9644 - improve camel-hbase component

2016-02-25 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/868

CAMEL-9644 - improve camel-hbase component

- removed deprecated code usage
- cleaned up code and use try-with-resource
- hbase-client upgrade to latest version (1.1.3)

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9644

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/868.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 #868


commit 9b647dfac58e41ef724a99137ef46a964b294957
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-25T14:35:46Z

CAMEL-9644 - camel-hbase : remove deprecated code




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9432 - Bindy CSV separator not treated a...

2016-02-25 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/864


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9285 - controlbus - Allow to grab curren...

2016-02-25 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/867

CAMEL-9285 - controlbus - Allow to grab current route id so you can control 
current route easier



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9285

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/867.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 #867


commit d56b5df22d6c828e2928a6006d546e59eac54ea0
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-25T09:14:51Z

CAMEL-9285 - controlbus - Allow to grab current route id so you can control 
current route easier




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8163 - socketFactory must also be set in...

2016-02-24 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/863


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9432 - Bindy CSV separator not treated a...

2016-02-24 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/864

CAMEL-9432 - Bindy CSV separator not treated as regex but fixed character 
in all cases



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9432

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/864.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 #864


commit e3608281e7b6767fb4ac5a008ec8189ddb9cbac9
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-24T13:31:46Z

CAMEL-9432 - Bindy CSV separator not treated as regex but fixed character 
in all cases




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8163 - socketFactory must also be set in...

2016-02-24 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/863

CAMEL-8163 - socketFactory must also be set in MailConfiguration when 
STARTTLS is used



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-8163

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/863.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 #863


commit fc0c886d6ca02274870538d53be9266bd4b94852
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-24T12:15:35Z

CAMEL-8163 - socketFactory must also be set in MailConfiguration when 
STARTTLS is used




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9586 - add option documentation, include...

2016-02-23 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/856


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9586 - add option documentation, include...

2016-02-23 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/856

CAMEL-9586 - add option documentation, include component in distribution, 
improve karaf features definition



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel 
CAMEL-9586-improvements

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/856.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 #856


commit 108998d0e10825e0444a2f5179bb747eccbaeb4f
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-23T09:35:55Z

CAMEL-9586 - add option documentation, include component in distribution, 
improve karaf features definition




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9586 - Create new Etcd component

2016-02-23 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/835


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8736 - Include camel-jcache in distribut...

2016-02-19 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/851


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8736 - Include camel-jcaache in distribu...

2016-02-19 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/851

CAMEL-8736 - Include camel-jcaache in distribution and provide Karaf …

…features

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-8736-karaf

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/851.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 #851






---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9430 - mark braintree javadoc as optiona...

2016-02-17 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/842


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9430 - mark braintree javadoc as optiona...

2016-02-16 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/842

CAMEL-9430 - mark braintree javadoc as optional



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9430

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/842.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 #842


commit 0e175e3bca49bfc16104cb339834b43da050308d
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-16T13:09:37Z

CAMEL-9430 - mark braintree javadoc as optional




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9430 - upgrade camel-braintree

2016-02-13 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/839

CAMEL-9430 - upgrade camel-braintree

- upgrade braintree-java SDK to 2.55.0
- remove ServiceMix bundle has 2.55.0 has [OSGi 
support](https://github.com/braintree/braintree_java/pull/30)

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9430-sdk-2.55.0

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/839.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 #839


commit 94934bc41b9ce0c50bf7f63b00835ce59cbbcb15
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-13T11:33:58Z

CAMEL-9430 - upgrade braintree sdk to 2.55.0, remove ServiceMix bundle has 
2.55.0 has OSGi meta-data




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9591 - Support Saxon integrated extensio...

2016-02-12 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/836


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9591 - Support Saxon integrated extensio...

2016-02-11 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/836

CAMEL-9591 - Support Saxon integrated extension functions



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9591

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/836.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 #836


commit 82abd905cb4110090184c19a750ed2aac25c175c
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-11T15:23:23Z

CAMEL-9591 - Support Saxon integrated extension functions




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9586 - Create new Etcd component

2016-02-10 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/835

CAMEL-9586 - Create new Etcd component

This PR is aimed to get some feedback on a new Etcd component. 

At the moment the component lacks a proper set of tests, documentation and 
some more functionalities I will add in the coming days.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9586

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/835.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 #835


commit 4926a6bdf1bf74eb5281c5b24a207f002036e83a
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-10T15:54:39Z

CAMEL-9586 - Create new Etcd component




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9430 - improvements to camel-braintree c...

2016-02-10 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/834

CAMEL-9430 - improvements to camel-braintree component



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9430

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/834.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 #834


commit c653560badeebcca114fac64d07a1ddc11025241
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-10T09:15:26Z

CAMEL-9430 - Add proxy support

commit 821e9f48ba3b5f0516c839d6a794d4ad6c3a0f13
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-10T09:15:44Z

CAMEL-9430 - Removed unused imports




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9579 - Replace deprecated entry listener...

2016-02-08 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/832

CAMEL-9579 - Replace deprecated entry listener signature in Hazelcast…

…MapConsumer

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9579

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/832.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 #832


commit a5faadc3e6b18be5f75ab0abf395ef435b1de64e
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-08T16:02:07Z

CAMEL-9579 - Replace deprecated entry listener signature in 
HazelcastMapConsumer




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9578 - Reduce object creation in Infinis...

2016-02-08 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/831

CAMEL-9578 - Reduce object creation in InfinispanProducer



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9578

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/831.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 #831


commit bc4430f936671ef8f422a8ebd9b0c624c473380c
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-08T15:22:43Z

CAMEL-9578 - Reduce object creation in InfinispanProducer




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8736 - Create new JCache component

2016-02-05 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/827

CAMEL-8736 - Create new JCache component

This PR is aimed to get some feedback on a new JCache component. 
At the moment the component lacks a proper set of tests, documentation and 
some more functionalities I will add in the coming days.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-8736

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/827.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 #827


commit d691db6bf7d5bf674c65eb0594cf9c376472f701
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-02-05T12:04:44Z

CAMEL-8736 - Create new JCache component




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9542 - add labels to new options

2016-02-01 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/819


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9542 - Allow HttpClient configuration (p...

2016-01-29 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/818


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9542 - Allow HttpClient configuration (p...

2016-01-29 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/818

CAMEL-9542 - Allow HttpClient configuration (proxy, connection poolin…

…g, etc) for camel-geocoder component

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9542

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/818.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 #818


commit 91d1e8cd9eed708a856ba6c0cef27c556ae3eb77
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-01-28T14:04:51Z

CAMEL-9542 - Allow HttpClient configuration (proxy, connection pooling, 
etc) for camel-geocoder component




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9542 - add labels to new options

2016-01-29 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/819

CAMEL-9542 - add labels to new options



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9542-labels

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/819.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 #819


commit be65a53f5e1966fca495279ddd3dc13ecedeb835
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-01-29T16:45:52Z

CAMEL-9542 - add labels to new options




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-6913 - Add dynamic unmarshalling capabil...

2016-01-27 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/810


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-6913 - Add dynamic unmarshalling capabil...

2016-01-27 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/810

CAMEL-6913 - Add dynamic unmarshalling capability to JiBX data format



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-6913

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/810.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 #810


commit d32e31fb34dc168368f469232a785eeed7a8e0f6
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-01-27T11:24:37Z

CAMEL-6913 - Add dynamic unmarshalling capability to JiBX data format




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8413 - camel-stomp - Allow to configure ...

2016-01-26 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/802

CAMEL-8413 - camel-stomp - Allow to configure SSL



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-8413

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/802.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 #802


commit 5223e9f487a03076d6967c32edc38f4714e7757d
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-01-26T12:01:21Z

CAMEL-8413 - camel-stomp - Allow to configure SSL




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-5583 - Add ning-compress as data format

2016-01-26 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/803


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-8413 - camel-stomp - Allow to configure ...

2016-01-26 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/802


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-5583 - Add ning-compress as data format

2016-01-26 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/805

CAMEL-5583 - Add ning-compress as data format



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-5583

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/805.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 #805


commit 0ab856eb497d6a45831db33a57f1843e323be787
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-01-26T15:18:37Z

CAMEL-5583 - Add ning-compress as data format




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9449 - Allow to specify custom exit code...

2016-01-26 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/806

CAMEL-9449 - Allow to specify custom exit code when camel exits due t…

…o expired Duration

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-9449

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/806.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 #806


commit 40264077412c5971b394f15bcd399dfc6e80105e
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-01-26T16:52:58Z

CAMEL-9449 - Allow to specify custom exit code when camel exits due to 
expired Duration




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-5583 - add LZFDataFormat to jaxp.index

2016-01-26 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/807

CAMEL-5583 - add LZFDataFormat to jaxp.index



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-5583-jaxb

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/807.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 #807


commit d5574fdb709b46cba926c14ee910757aab55f9ff
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-01-26T17:46:23Z

CAMEL-5583 - add LZFDataFormat to jaxp.index




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-9449 - Allow to specify custom exit code...

2016-01-26 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/806


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-5583 - Add ning-compress as data format

2016-01-26 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/805


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-7865 - Support to carry file attributes ...

2016-01-26 Thread lburgazzoli
Github user lburgazzoli closed the pull request at:

https://github.com/apache/camel/pull/798


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] camel pull request: CAMEL-5583 - Add ning-compress as data format

2016-01-26 Thread lburgazzoli
GitHub user lburgazzoli opened a pull request:

https://github.com/apache/camel/pull/803

CAMEL-5583 - Add ning-compress as data format



You can merge this pull request into a Git repository by running:

$ git pull https://github.com/lburgazzoli/apache-camel CAMEL-5583

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/camel/pull/803.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 #803


commit d3cefe0a238afc7c0142064dd09186510d668c00
Author: lburgazzoli <lburgazz...@gmail.com>
Date:   2016-01-25T13:49:30Z

CAMEL-5583 - Add ning-compress as data format




---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


  1   2   >