FacetEntry.java

29 lines | 518 B Blame History Raw Download
package com.shopizer.search.services;


public class FacetEntry {
	
	private String name;
	private Long count;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
/*	public List<Entry> getEntries() {
		return entries;
	}
	public void setEntries(List<Entry> entries) {
		this.entries = entries;
	}
	private List<Entry> entries;*/
	public Long getCount() {
		return count;
	}
	public void setCount(Long count) {
		this.count = count;
	}

}