How to get the perticular value in the drools when block.
I am looking for something like this but its not working:
I have inserted Hashmap into Working memory and trying to retrieve it in When
$expiry_date:HashMap(get("CREDIT_CARD_EXPIRATION_DATE"));
eval(ageInDays($expiry_date)>10) ;
I get below error
[42,37]: [ERR 101] Line 42:37 no viable alternative at input '"CREDIT_CARD_EXPIRATION_DATE"' in rule "Rule1" in pattern HashMap
Usually its better to insert more typed objects than just a hash map. Can you explain the information that are you trying to process and why do you choose to insert a
hashmap
instead of atyped object
?I'm pretty sure that you can do something like:
I didn't test it but you should look in that direction if you can't insert more typed facts. Cheers