You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2021/02/26 07:31:09 UTC

[camel] branch regen_bot updated (8f6d432 -> 59d861e)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from 8f6d432  Upgrade AWS SDK v2 to version 2.16.7
     add b7c718a  camel-http - polished
     add 30e9be4  CAMEL-16264: camel-http - Add option to ignore response headers
     add a5068fd  camel-http - Optimize a bit
     add d988d47  CAMEL-16264: camel-http - Add option to ignore request headers
     add d3ff83c  CAMEL-16264: camel-http - Allow to configure these on component level.
     add 1597870  CAMEL-16264: camel-http - Allow to configure these on component level.
     add 59d861e  Regen for commit 1597870ff6ee305330cf165b476ea46256a44f53

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/catalog/components/http.json  |   5 +
 .../org/apache/camel/catalog/components/https.json |   5 +
 .../apache/camel/catalog/components/resteasy.json  |   5 +
 .../apache/camel/catalog/docs/http-component.adoc  |   9 +-
 .../camel/catalog/docs/resteasy-component.adoc     |   9 +-
 .../component/http/HttpComponentConfigurer.java    |  18 ++
 .../component/http/HttpEndpointConfigurer.java     |  12 ++
 .../component/http/HttpEndpointUriFactory.java     |   4 +-
 .../org/apache/camel/component/http/http.json      |   5 +
 .../org/apache/camel/component/http/https.json     |   5 +
 .../camel-http/src/main/docs/http-component.adoc   |   9 +-
 .../apache/camel/component/http/HttpComponent.java |  56 +++++-
 .../component/http/HttpDeleteWithBodyMethod.java   |   5 +
 .../apache/camel/component/http/HttpEndpoint.java  |  35 ++++
 .../camel/component/http/HttpEntityConverter.java  |  18 +-
 .../component/http/HttpGetWithBodyMethod.java      |   5 +
 .../apache/camel/component/http/HttpMethods.java   |  25 +++
 .../apache/camel/component/http/HttpProducer.java  | 198 +++++++++++----------
 .../resteasy/ResteasyEndpointUriFactory.java       |   4 +-
 .../apache/camel/component/resteasy/resteasy.json  |   5 +
 .../src/main/docs/resteasy-component.adoc          |   9 +-
 .../component/dsl/HttpComponentBuilderFactory.java |  59 ++++++
 .../dsl/HttpsComponentBuilderFactory.java          |  59 ++++++
 .../dsl/ResteasyComponentBuilderFactory.java       |  59 ++++++
 .../endpoint/dsl/HttpEndpointBuilderFactory.java   |  78 ++++++++
 .../dsl/ResteasyEndpointBuilderFactory.java        |  78 ++++++++
 .../modules/ROOT/pages/http-component.adoc         |   9 +-
 .../modules/ROOT/pages/resteasy-component.adoc     |   9 +-
 28 files changed, 680 insertions(+), 117 deletions(-)