address.addAttribute(cityAttribute, stringTypeName, 1, 1);
address.addAttribute(countryAttribute, stringTypeName, 1, 1);
Type person = new Type(personTypeName);
person.addAttribute(firstnameAttribute, stringTypeName, 1, 1);
person.addAttribute(lastNameAttribute, stringTypeName, 1, 1);
person.addAttribute(addressAttribute, addressTypeName, 1, 1);
Map<String, I_Type> types = new HashMap<String, I_Type>();
types.put(stringTypeName, string);
types.put(addressTypeName, address);
types.put(personTypeName, person);
Map<String, AttributeConfiguration> attributes = new HashMap<String, AttributeConfiguration>();