public void configure()

in jolokia/src/main/java/org/apache/camel/example/MySpringBootRouter.java [31:38]


    public void configure() {
        from("timer:hello?period={{timer.period}}").routeId("hello")
            .transform().method("myBean", "saySomething")
            .filter(simple("${body} contains 'foo'"))
                .to("log:foo")
            .end()
            .to("stream:out");
    }