I need to verify whether javax.jms.Message matches provided selector i.e.:
Message msg = ...;
SomeSelectorMatcher matcher = new SomeSelectorMatcher(" someProp='someVal' and someProp2 >3 ... ");
if(matcher.matches(msg){
//do sth
}else{
//do sth else
}
Is there any out of the box library which does that ?