Versions Compared

Key

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

...

You can use the Parameter Binding Annotations to customize how parameter values are created from the Message

Examples

For example a POJO Bean such as:

Code Block
public class Bar {

    public String doSomething(String body) {
      // process the in body and return whatever you want
      return "Bye World";
   }

...