public void configure()

in generic-examples/traits/health/HealthChecks.java [22:27]


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