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/04/20 08:34:32 UTC

[camel] branch regen_bot updated (d9cebccda63 -> 67cb4c4b186)

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 d9cebccda63 CXF docs polish - Fixes from review
     add fa3167901e7 [Camel-19280] camel coap observe (#9898)
     add 67cb4c4b186 Regen for commit fa3167901e792c980e6bd4b37841a7b5ab081dda

No new revisions were added by this update.

Summary of changes:
 .../apache/camel/catalog/components/coap+tcp.json  |   5 +
 .../org/apache/camel/catalog/components/coap.json  |   5 +
 .../apache/camel/catalog/components/coaps+tcp.json |   5 +
 .../org/apache/camel/catalog/components/coaps.json |   5 +
 .../apache/camel/coap/CoAPEndpointConfigurer.java  |   9 ++
 .../apache/camel/coap/CoAPEndpointUriFactory.java  |   5 +-
 .../resources/org/apache/camel/coap/coap+tcp.json  |   5 +
 .../resources/org/apache/camel/coap/coap.json      |   5 +
 .../resources/org/apache/camel/coap/coaps+tcp.json |   5 +
 .../resources/org/apache/camel/coap/coaps.json     |   5 +
 .../org/apache/camel/coap/CamelCoapResource.java   |  10 ++
 .../java/org/apache/camel/coap/CoAPConstants.java  |   4 +
 .../java/org/apache/camel/coap/CoAPConsumer.java   |  37 ++-----
 .../java/org/apache/camel/coap/CoAPEndpoint.java   | 112 ++++++++++++++++++-
 .../java/org/apache/camel/coap/CoAPHelper.java     |  30 +++++
 .../java/org/apache/camel/coap/CoAPNotifier.java   |  72 ++++++++++++
 .../java/org/apache/camel/coap/CoAPObserver.java   |  74 +++++++++++++
 .../java/org/apache/camel/coap/CoAPProducer.java   |  44 +-------
 .../org/apache/camel/coap/CoAPObserveTest.java     | 103 +++++++++++++++++
 .../endpoint/dsl/CoAPEndpointBuilderFactory.java   | 123 +++++++++++++++++++++
 20 files changed, 589 insertions(+), 74 deletions(-)
 create mode 100644 components/camel-coap/src/main/java/org/apache/camel/coap/CoAPNotifier.java
 create mode 100644 components/camel-coap/src/main/java/org/apache/camel/coap/CoAPObserver.java
 create mode 100644 components/camel-coap/src/test/java/org/apache/camel/coap/CoAPObserveTest.java