I have a map in Java
Map<String, Object> model = new HashMap<>();
Each (key,value) pair of this map is a list of urls:
List<String> thumbnailImgUrl = new ArrayList<>();
for (....) {
thumbnailUrl.add(url);
}
model.put("photoUrl", thumbnailImgUrl);
I am passing the object "model" to the StringTemplate.
How can I access individual urls in string template?
Notification(model) ::= <<
{how can I access the individual urls here?}
>>