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 07:46:11 UTC

[camel] branch regen_bot updated (fa530bc5fc1 -> 2f3acd52eb7)

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 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 +++++++++++++++++
 21 files changed, 447 insertions(+), 70 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