Hi Colleagues, We have the following route. Is it possible in 'MyPostProcessor' to get the information of the previous step - toD in this case, but it could be different in different case.
from("direct:begin")
.process(new MyInboundProcessor())
.process(new MyTransformer())
.toD("xxxx")
.process(new MyPostProcessor())
Regards,
Arpit.
