public void configure()

in validator/src/main/java/sample/camel/SampleCamelRouter.java [31:40]


    public void configure() throws Exception {
        validator()
            .type("greeting")
            .withBean("greetingValidator");
        
        from("timer:hello?period={{timer.period}}")
            .outputTypeWithValidate("greeting")
            .transform(method("myBean", "saySomething"))
            .to("stream:out");
    }