In my mule flow I am reading the message form WMQ using WMQ node and then calling a Java class using Java node for required processing of the message.
For the same I have to override the public Object transformMessage(MuleMessage message, String outputEncoding) method. This method is forcing me to return value but I don't require to send any object back.
Can someone please help me to understand what I need to return and why we have to return the value.
Cheers!