Camel
The Camel configuration category includes the following configurable options:
Spring Context Config Class(es)
Camel Functions (File)
Camel Functions (Text)
Camel Routes (File)
Camel Routes (Text)
|
Spring Context Config Class(es) |
|
|
STRING | |
A comma or whitespace-separated list of Configuration classes for a Spring Annotation-based Context which will be used to provide Apache Camel processors | |
|
|
(no default) | |
|
|
Camel Functions (File) |
|
|
Resource Path | |
This is the filepath to the JavaScript functions that can be called within Camel routes. | |
|
|
(no default) | |
|
|
Camel Functions (Text) |
|
|
JAVASCRIPT | |
JavaScript functions that can be called within Camel routes | |
|
|
function processJson(jsonObject) {
}
function processString(string) {
}
function processResourceModified(resourceModified) {
}
function processBundle(bundle) {
}
|
|
|
|
Camel Routes (File) |
|
|
Resource Path | |
This is the filepath to the routes that will be used with Smile CDR. It can be a yaml or xml file. | |
|
|
(no default) | |
|
|
Camel Routes (Text) |
|
|
JAVASCRIPT | |
These are the routes that will be used with Smile CDR. It can be in yaml or xml format. | |
|
|
<route>
<from uri="kafka:in-topic?brokers=localhost:9092"/>
<to uri="kafka:out-topic?brokers=localhost:9092"/>
</route>
|
|
|