![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.GlobalSearchResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
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