Hi,
I am using GAE 1.5.4 JAVA.
public class Citynames implements Serialisable{
String id;
String name;
// getter setter
}
I have a list of city names contained in an arraylist,
ArrayList<String> list = new ArrayList<String>();
for(........) {
Citynames city = new Citynames();
city.add("11");
city.add(""ddd);
list.add(city);
}
Now i need to store this list in datastore.
What is the best way to acheive this as
datastore.put(list) is not working and fails with following exception
Citynames is not a supported property type.
Thanks
Deepak