You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2019/04/30 09:53:08 UTC

[camel] branch master updated (f18a3e3 -> dcfc19e)

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

acosentino pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git.


    from f18a3e3  Fixed CS for Camel-Google-BigQuery
     new d4e6f8c  CAMEL-13402 - Updating to Californium 2.0.x
     new c83de76  Adding initial TLS support
     new 492d972  Avoid writing out Californium.properties
     new 97b117d  Improving TLS configuration
     new b1208cd  Adding support for client authentication
     new 0de1654  Consolidate TLS configuration
     new 9ad0600  Adding TLS tests
     new 7f88eb8  Adding more CoAP TLS tests
     new f3f9ed5  Updating the certs to use the right curves
     new bc48f79  Added initial support for raw public keys
     new 51f058c  Adding more RPK tests
     new a0f83e6  Supporting pre-shared keys
     new 60618ba  Adding X.509 + PSK tests
     new 29e97df  Updating the docs
     new 5bbd97c  Removing some whitespace
     new 12e10b7  Doc change
     new fd4d5d9  CAMEL-13402 - Fixed CS
     new dcfc19e  CAMEL-13402 - Fixed Karaf feature after upgrading to Californium 2.x

The 36870 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:
 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 +
 .../services/org/apache/camel/component/coaps      |  18 ++
 .../apache/camel/coap/CoAPComponentTLSTest.java    | 307 ++++++++++++++++++
 .../org/apache/camel/coap/CoAPComponentTest.java   |   4 +-
 .../apache/camel/coap/CoAPMethodRestrictTest.java  |   2 +-
 .../camel/coap/CoAPRestComponentTLSTest.java       | 101 ++++++
 .../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
 parent/pom.xml                                     |   2 +-
 .../karaf/features/src/main/resources/features.xml |   4 +-
 18 files changed, 827 insertions(+), 16 deletions(-)
 create mode 100644 components/camel-coap/src/main/resources/META-INF/services/org/apache/camel/component/coaps
 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