16 lines
342 B
Java
16 lines
342 B
Java
package com.baeldung.camel;
|
|
|
|
/**
|
|
* a Mock class to show how some other layer
|
|
* (a persistence layer, for instance)
|
|
* could be used insida a Camel
|
|
*
|
|
*/
|
|
public class ExampleServices {
|
|
|
|
public static void example(MyBean bodyIn) {
|
|
bodyIn.setName( "Hello, " + bodyIn.getName() );
|
|
bodyIn.setId(bodyIn.getId()*10);
|
|
}
|
|
}
|