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

com.evrythng.thng.resource.model.store.GlobalSearchResult Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
package com.evrythng.thng.resource.model.store;

import java.io.Serializable;
import java.util.List;

/**
 * Search results.
 */
public class GlobalSearchResult implements Serializable {

	private static final long serialVersionUID = 2580537661302182631L;
	/**
	 * Found thngs
	 */
	private List thngs;
	private Long thngsResultCount;
	/**
	 * Found products
	 */
	private List products;
	private Long productsResultCount;
	/**
	 * Found collections
	 */
	private List collections;
	private Long collectionsResultCount;
	/**
	 * Found places
	 */
	private List places;
	private Long placesResultCount;

	public List getThngs() {

		return thngs;
	}

	public void setThngs(final List thngs) {

		this.thngs = thngs;
	}

	public Long getThngsResultCount() {

		return thngsResultCount;
	}

	public void setThngsResultCount(final Long thngsResultCount) {

		this.thngsResultCount = thngsResultCount;
	}

	public List getProducts() {

		return products;
	}

	public void setProducts(final List products) {

		this.products = products;
	}

	public Long getProductsResultCount() {

		return productsResultCount;
	}

	public void setProductsResultCount(final Long productsResultCount) {

		this.productsResultCount = productsResultCount;
	}

	public List getCollections() {

		return collections;
	}

	public void setCollections(final List collections) {

		this.collections = collections;
	}

	public Long getCollectionsResultCount() {

		return collectionsResultCount;
	}

	public void setCollectionsResultCount(final Long collectionsResultCount) {

		this.collectionsResultCount = collectionsResultCount;
	}

	public List getPlaces() {

		return places;
	}

	public void setPlaces(final List places) {

		this.places = places;
	}

	public Long getPlacesResultCount() {

		return placesResultCount;
	}

	public void setPlacesResultCount(final Long placesResultCount) {

		this.placesResultCount = placesResultCount;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy