When trying to execute below snippet where iterating values of Map<String,List> , it is throwing beanshell parse exception at symbol > . Any solution I could get to resolve this one?
map.entrySet().stream().forEach(map -> {
if (map.getValue().stream().anyMatch(s -> groupDN.startsWith(s.toUpperCase()))) {
return "DONE";
}
;
});
Exception running rule: BeanShell script error: bsh.ParseException: Parse error at line 30, column 22. Encountered: > BSF info: Test_RO at line: 0 column: columnNo