protected List getData() {
   List updates = new ArrayList();
   Update update = new Update();
   update.setUpdateName("Add");
   update.setDescription("Add a new Residential Listing");
   update.setKeyField("key");
   update.addUpdateType(new UpdateType(1));
   updates.add(update);
   return updates;
 }