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 2022/10/17 13:03:02 UTC

[camel-kamelets] 02/03: Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet - HTTP Secured

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

acosentino pushed a commit to branch more-headers-support-6
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 3ee4938804279121be186007ac1d605d18071809
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Oct 17 14:56:02 2022 +0200

    Added a Catalog Method showing the supported headers (specific for consumer, producer and common) for a Kamelet - HTTP Secured
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java   | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/library/camel-kamelets-catalog/src/main/java/org/apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java b/library/camel-kamelets-catalog/src/main/java/org/apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java
index 7c20dd4c..a393cfee 100644
--- a/library/camel-kamelets-catalog/src/main/java/org/apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java
+++ b/library/camel-kamelets-catalog/src/main/java/org/apache/camel/kamelets/catalog/model/KameletPrefixSchemeEnum.java
@@ -64,7 +64,8 @@ public enum KameletPrefixSchemeEnum {
     google_pubsub("google-pubsub", "google-pubsub"),
     google_sheets("google-sheets", "google-sheets-stream"),
     google_storage("google-storage", "google-storage"),
-    http("http", "http");
+    http("http", "http"),
+    http_secured("http-secured", "http");
 
     public final String name;
     public final String scheme;