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

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

There is a newer version: 1.2.3
Show newest version
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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy