*/
private Map<String, PropertyInfo> getPropertyInfo(MetricDefinition def) {
Map<String, PropertyInfo> defs = new HashMap<String, PropertyInfo>();
for (Entry<String,Metric> entry : def.getMetrics().entrySet()) {
Metric metric = entry.getValue();
defs.put(entry.getKey(), new PropertyInfo(
metric.getName(), metric.isTemporal(), metric.isPointInTime()));
}
return defs;
}