I have a HashMap to String Type Converter in my jar, say A.jar but a similar converter exists in another jar, B.jar (exposed by a third party in the same server) but I always want my type converter(present in A.jar) to get invoked in my camel route, when I call
String body=message.getBody(String.class);
Any idea on how this can be done?