All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.vige.cities.result.geonames.Countrynodes Maven / Gradle / Ivy

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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy