In my application, I am using wildcards in apache camel and I have defined route builder like this:
from("activemq:queue:*.processQueue").bean(beanOne,"someMethod");
While sending the message I will be sending message to "{uniqueID}.processQueue" queue so I need to get that uniqueId inside someMethod of beanOne.