blob: 34981a289c850ba534ed73775bd99cf63c31d663 [file] [log] [blame]
//
// To run this integrations use:
//
// kamel run --name=withrest --dependency=camel-undertow examples/routes-rest.js
//
// ****************
//
// Setup
//
// ****************
l = components.get('log')
l.exchangeFormatter = function(e) {
return "log - body=" + e.in.body + ", headers=" + e.in.headers
}
c = restConfiguration()
c.component = 'undertow'
c.port = 8080
// ****************
//
// Functions
//
// ****************
function proc(e) {
e.getIn().setHeader('RandomValue', Math.floor((Math.random() * 100) + 1))
}
// ****************
//
// Route
//
// ****************
rest()
.path('/say/hello')
.produces("text/plain")
.get().route()
.transform().constant("Hello World");
from('timer:js?period=1s')
.routeId('js')
.setBody()
.constant('Hello Camel K')
.process(proc)
.to('log:info')