new HashMap<String, Iterable<NSPropertyTypePropertyNameKind>>();
{
List<NSPropertyTypePropertyNameKind> props = new LinkedList<NSPropertyTypePropertyNameKind>();
props.add(new NSPropertyTypePropertyNameKind(1000L, 10L, timestamp, "Kind_A", "Prop_A", "INT"));
props.add(new NSPropertyTypePropertyNameKind(2000L, 20L, timestamp, "Kind_A", "Prop_A", "COMPLEX"));
props.add(new NSPropertyTypePropertyNameKind(2000L, 20L, timestamp, "Kind_B", "Prop_A", "INT"));
props.add(new NSPropertyTypePropertyNameKind(2000L, 20L, timestamp, "Kind_B", "Prop_B", "INT"));
props.add(new NSPropertyTypePropertyNameKind(2000L, 20L, timestamp, "Kind_B", "Prop_C", "INT"));
propMap.put("", props);
}
{
List<NSPropertyTypePropertyNameKind> props = new LinkedList<NSPropertyTypePropertyNameKind>();
props.add(new NSPropertyTypePropertyNameKind(2000L, 10L, timestamp, "Kind_A", "Prop_A", "INT"));
props.add(new NSPropertyTypePropertyNameKind(3000L, 20L, timestamp, "Kind_A", "Prop_A", "COMPLEX"));
props.add(new NSPropertyTypePropertyNameKind(4000L, 20L, timestamp, "Kind_B", "Prop_A", "INT"));
props.add(new NSPropertyTypePropertyNameKind(5000L, 20L, timestamp, "Kind_B", "Prop_B", "INT"));
props.add(new NSPropertyTypePropertyNameKind(6000L, 20L, timestamp, "Kind_B", "Prop_C", "INT"));
propMap.put("namespace_A", props);
}
return new StatDTO(total, kindsMap, propMap);