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 2023/10/12 08:18:09 UTC

[camel] branch regen_bot_40x updated (0a61fb64c0f -> 2f3acd52eb7)

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

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


    from 0a61fb64c0f Camel-17040 add no data response option (#11673)
     add d66ce86859d Revert "Thank you Infinispan for not releasing all protostream"
     add d86c5a8f9e3 Upgrade Infinispan and related container image to version 14.0.18.Final (#11701)
     add fa295d8936e Upgrade jetty to 11.0.17 (#11700)
     add fa530bc5fc1 Upgrade to zookeeper 3.9.1 (#11703)
     add 2f3acd52eb7 OAuth2 authentication with client credentials flow (#11628)

No new revisions were added by this update.

Summary of changes:
 .../catalog/components/atmosphere-websocket.json   |  5 +-
 .../org/apache/camel/catalog/components/http.json  |  7 +-
 .../org/apache/camel/catalog/components/https.json |  7 +-
 .../websocket/WebsocketEndpointConfigurer.java     | 18 +++++
 .../websocket/WebsocketEndpointUriFactory.java     | 10 ++-
 .../atmosphere/websocket/atmosphere-websocket.json |  5 +-
 .../camel/http/common/HttpCommonEndpoint.java      | 40 ++++++++++
 .../camel/http/common/HttpConfiguration.java       | 40 ++++++++++
 components/camel-http/pom.xml                      |  4 +
 .../component/http/HttpEndpointConfigurer.java     | 18 +++++
 .../component/http/HttpEndpointUriFactory.java     |  9 ++-
 .../component/http/HttpTimeoutConverterLoader.java | 50 -------------
 .../org/apache/camel/component/http/http.json      |  7 +-
 .../org/apache/camel/component/http/https.json     |  7 +-
 .../camel-http/src/main/docs/http-component.adoc   | 20 +++++
 .../apache/camel/component/http/HttpComponent.java | 15 ++++
 .../component/http/HttpCredentialsHelper.java      | 10 ++-
 .../apache/camel/component/http/HttpEndpoint.java  | 11 +--
 .../component/http/OAuth2ClientConfigurer.java     | 79 ++++++++++++++++++++
 .../http/HttpOAuth2AuthenticationTest.java         | 87 ++++++++++++++++++++++
 .../http/handler/OAuth2TokenRequestHandler.java    | 68 +++++++++++++++++
 parent/pom.xml                                     |  7 +-
 .../services/InfinispanLocalContainerService.java  |  2 +-
 .../zookeeper/services/ZooKeeperContainer.java     |  2 +-
 24 files changed, 452 insertions(+), 76 deletions(-)
 delete mode 100644 components/camel-http/src/generated/java/org/apache/camel/component/http/HttpTimeoutConverterLoader.java
 create mode 100644 components/camel-http/src/main/java/org/apache/camel/component/http/OAuth2ClientConfigurer.java
 create mode 100644 components/camel-http/src/test/java/org/apache/camel/component/http/HttpOAuth2AuthenticationTest.java
 create mode 100644 components/camel-http/src/test/java/org/apache/camel/component/http/handler/OAuth2TokenRequestHandler.java