public void configure()

in generic-examples/traits/container/Container.java [34:39]


    public void configure() throws Exception {
        from("timer:tick")
            .setBody()
            .constant("Hello Camel K!")
            .to("log:info");
    }