Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated File and/or FTP component references from Camel 1 to Camel 2

...

Match by wildcard allows you to match a range of endpoint or all of a given type. For instance use uri="file:*" will match all File based endpoints.

Code Block
java
java
intercept("jms:*").to("log:fromjms");

...