Integrate with Camel
This handler (com.rierino.handler.camel.CamelEventHandler) provides ability to use Apache Camel producers for 3rd party integrations.
Handler Parameters
implementation (group:'com.rierino.runner', name: 'camel', version:"${rierinoVersion}")Actions
SendMessage
Field
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Integrate with Camel SendMessage action eventMeta fields",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"domain": {
"type": "string",
"definition": "System name to use as target",
"example": "mq",
"default": null
},
"inputElement": {
"type": "string",
"definition": "Json path for the input in request event payload",
"example": "parameters",
"default": null
},
"outputElement": {
"type": "string",
"definition": "Json path for the output in response event payload",
"example": "result",
"default": null
}
}
}
}
}Parameter
Definition
Example
Default
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Integrate with Camel SendMessage action eventMeta.parameters",
"type": "object",
"properties": {
"eventMeta": {
"type": "object",
"properties": {
"parameters": {
"type": "object",
"properties": {
"exchange": {
"type": "string",
"definition": "Camel message exchange pattern",
"example": "InOut",
"default": null
},
"camelHeader": {
"type": "object",
"definition": "Header parameters to send to target (represents camelHeader.*)",
"example": {
"myHeader": "value"
},
"default": null
}
}
}
}
}
}
}Last updated
