This is an automated email from the ASF dual-hosted git repository.
coheigea pushed a change to branch camel-2.x
in repository https://gitbox.apache.org/repos/asf/camel.git.
from 07a2e12 [CAMEL-13576]avoid adding cxf message context map into camel
exchange
new 8c4f277 CAMEL-13402 - Updating to Californium 2.0.x
new 7765e80 Adding initial TLS support
new 97fd0e7 Avoid writing out Californium.properties
new a7f884d Improving TLS configuration
new cc61165 Adding support for client authentication
new 8ebae08 Consolidate TLS configuration
new 0117334 Adding TLS tests
new 8671e19 Fixing tests
new 27b5f7f Adding more CoAP TLS tests
new 8d6374b Updating the certs to use the right curves
new 39538df Added initial support for raw public keys
new 0ff13f9 Adding more RPK tests
new bafb543 Supporting pre-shared keys
new 189104c Adding X.509 + PSK tests
new d4d31ae Updating the docs
new 1adf517 Removing some whitespace
new 33edefe Doc change
new 9501988 Cleanup of testcode
new cfe2e88 CAMEL-13402 - Fixed CS
new 414f35b CAMEL-13402 - Fixed Karaf feature after upgrading to
Californium 2.x
new 8c58923 Removing unused import
The 21 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
camel-core/readme.adoc | 82 +----
components/camel-coap/pom.xml | 5 +
.../camel-coap/src/main/docs/coap-component.adoc | 13 +-
.../java/org/apache/camel/coap/CoAPComponent.java | 26 +-
.../java/org/apache/camel/coap/CoAPEndpoint.java | 343 ++++++++++++++++++++-
.../java/org/apache/camel/coap/CoAPProducer.java | 12 +
.../org/apache/camel/component/{coap => coaps} | 0
.../apache/camel/coap/CoAPComponentTLSTest.java | 321 +++++++++++++++++++
.../org/apache/camel/coap/CoAPComponentTest.java | 4 +-
.../apache/camel/coap/CoAPMethodRestrictTest.java | 2 +-
.../camel/coap/CoAPRestComponentTLSTest.java | 109 +++++++
.../apache/camel/coap/CoAPRestComponentTest.java | 6 +-
.../camel-coap/src/test/resources/client.jks | Bin 0 -> 1968 bytes
.../camel-coap/src/test/resources/selfsigned.jks | Bin 0 -> 706 bytes
.../camel-coap/src/test/resources/service.jks | Bin 0 -> 1969 bytes
.../camel-coap/src/test/resources/truststore.jks | Bin 0 -> 582 bytes
.../camel-coap/src/test/resources/truststore2.jks | Bin 0 -> 582 bytes
components/readme.adoc | 98 ++++--
parent/pom.xml | 2 +-
.../karaf/features/src/main/resources/features.xml | 4 +-
.../src/main/resources/camel-connector-schema.json | 2 +-
.../src/main/resources/camel-connector.json | 4 +-
22 files changed, 905 insertions(+), 128 deletions(-)
copy
components/camel-coap/src/main/resources/META-INF/services/org/apache/camel/component/{coap
=> coaps} (100%)
create mode 100644
components/camel-coap/src/test/java/org/apache/camel/coap/CoAPComponentTLSTest.java
create mode 100644
components/camel-coap/src/test/java/org/apache/camel/coap/CoAPRestComponentTLSTest.java
create mode 100644 components/camel-coap/src/test/resources/client.jks
create mode 100644 components/camel-coap/src/test/resources/selfsigned.jks
create mode 100644 components/camel-coap/src/test/resources/service.jks
create mode 100644 components/camel-coap/src/test/resources/truststore.jks
create mode 100644 components/camel-coap/src/test/resources/truststore2.jks