in generic-examples/traits/container/RestDSL.java [22:30]
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");
}