in generic-examples/traits/service/RestDSL2.java [26:34]
public void configure() throws Exception {
rest()
.get("/hello")
.to("direct:hello");
from("direct:hello")
.setHeader(Exchange.CONTENT_TYPE, constant("text/plain"))
.transform().simple("Hello World");
}