Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
import static org.apache.camel.builder.xpathxml.XPathBuilder.*;
...
from("queue:foo").filter(xpath("//foo")).to("queue:bar")
Code Block
import static org.apache.camel.builder.xpathxml.XPathBuilder.*;
...
from("queue:foo").choice(xpath("//foo")).to("queue:bar").
otherwise().to("queue:others");

...