it.vige.cities.result.geonames.Countrynodes 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
The newest version!
package it.vige.cities.result.geonames;
import java.util.List;
import java.util.Map;
/**
* A set of geonames nodes
* @author lucastancapiano
*/
public class Countrynodes {
private List geonames;
private Map status;
/**
* Default countrynodes
*/
public Countrynodes() {
}
/**
* Geonames
* @return the list of countries
*/
public List getGeonames() {
return geonames;
}
/**
* Geonames
* @param geonames the list of countries
*/
public void setGeonames(List geonames) {
this.geonames = geonames;
}
/**
* Status
* @return the status
*/
public Map getStatus() {
return status;
}
/**
* Status
* @param status the status
*/
public void setStatus(Map status) {
this.status = status;
}
}