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 2021/08/30 11:57:54 UTC

[camel-kamelets] 01/06: Added XJ Identity Action Kamelet

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

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

commit d1b54adb0b26ce09277e43b8884b5441851ab27e
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Mon Aug 30 13:36:06 2021 +0200

    Added XJ Identity Action Kamelet
---
 xj-identity-action.kamelet.yaml | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/xj-identity-action.kamelet.yaml b/xj-identity-action.kamelet.yaml
new file mode 100644
index 0000000..3e7f30e
--- /dev/null
+++ b/xj-identity-action.kamelet.yaml
@@ -0,0 +1,38 @@
+apiVersion: camel.apache.org/v1alpha1
+kind: Kamelet
+metadata:
+  name: xj-identity-action
+  annotations:
+    camel.apache.org/kamelet.support.level: "Preview"
+    camel.apache.org/catalog.version: "main-SNAPSHOT"
+    camel.apache.org/kamelet.icon: "data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c29kaXBvZGk9Imh0dHA6Ly9zb2RpcG [...]
+    camel.apache.org/provider: "Apache Software Foundation"
+    camel.apache.org/kamelet.group: "Actions"
+  labels:
+    camel.apache.org/kamelet.type: "action"
+spec:
+  definition:
+    title: "XJ Identity Action"
+    description: |-
+      Apply the XJ Identity Transformation. 
+      
+      There two possible direction of the transformation, from JSON to XML or from XML to JSON.
+    required:
+      - direction
+    type: object
+    properties:
+      direction:
+        title: Direction
+        description: The transform direction, possible values are XML2JSON or JSON2XML
+        type: String
+  dependencies:
+  - "camel:xj"
+  - "camel:kamelet"
+  flow:
+    from:
+      uri: "kamelet:source"
+      steps:
+      - to:
+          uri: "xj:identity"
+          parameters:
+            transformDirection: "{{direction}}"