it.vige.cities.result.geonames.Geonodes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cities-generator Show documentation
Show all versions of cities-generator Show documentation
Generate a file with the cities of your country
package it.vige.cities.result.geonames;
import java.util.List;
import java.util.Map;
/**
*
* @author lucastancapiano
*
* A set of geonames nodes
*/
public class Geonodes {
private int totalResultsCount;
private List geonames;
private Map status;
/**
*
* @return the total result count
*/
public int getTotalResultsCount() {
return totalResultsCount;
}
/**
*
* @param totalResultsCount the total result count
*/
public void setTotalResultsCount(int totalResultsCount) {
this.totalResultsCount = totalResultsCount;
}
/**
*
* @return the geonames list
*/
public List getGeonames() {
return geonames;
}
/**
*
* @param geonames the geonames list
*/
public void setGeonames(List geonames) {
this.geonames = geonames;
}
/**
*
* @return the status
*/
public Map getStatus() {
return status;
}
/**
*
* @param status the status
*/
public void setStatus(Map status) {
this.status = status;
}
}