return new RouteBuilder() {
public void configure() throws Exception {
// add debugger as an interceptor. The debugger is an enhanced tracer that also
// logs the exchanges at runtime. It is also a framework where we programatically
// can access the internal states of Camel etc.
getContext().addInterceptStrategy(new Debugger());
from("direct:start").
process(new Processor() {
public void process(Exchange exchange) throws Exception {
// do nothing