2 Replies Latest reply on Sep 19, 2012 5:13 PM by e0richt

    building a camel route using java...

    e0richt

      hi,

       

      I am looking for example code.

       

      given this in DSL:

       

      from("uri").filter("...").processor("....");

       

      there must be a way to do this:

       

      Obj x = from("uri");

       

      x.filter("...");

      x.processor("...");

       

      can anyone point me where some examples are that do this?

       

      thanks!