Map<String, Object> context = new HashMap<String, Object>();
context.put("contextType", contextType);
context.put("contextNode", contextNode);
context.put("contextParent", contextParent);
for (Map.Entry<String, List<GWTJahiaNodePropertyValue>> entry : dependentValues.entrySet()) {
context.put(entry.getKey(), CollectionUtils.collect(entry.getValue(), new Transformer() {
public Object transform(Object input) {
return input.toString();
}
}));
}