/** * @author ishaikh * */ package com.transformuk.bdt.model; import java.util.List; import java.util.Map; import java.util.TreeSet; import com.transformuk.bdt.domain.Bfsf; import com.transformuk.bdt.domain.CrawledContent; import com.transformuk.bdt.domain.Lep; public class ReportModel { String businessAge; String workforce; String legalStructure; String sector; String postCode; boolean highGrowth; boolean basedInEngland; boolean exportArea; boolean manufacturingSector; Map<String, List<Bfsf>> searchResult; Map<String, List<OtherSources>> otherSources; List<Lep> lepResult; public Map<String, List<OtherSources>> getOtherSources() { return otherSources; } public void setOtherSources(Map<String, List<OtherSources>> otherSources) { this.otherSources = otherSources; } public String getBusinessAge() { return businessAge; } public void setBusinessAge(String businessAge) { this.businessAge = businessAge; } public String getWorkforce() { return workforce; } public void setWorkforce(String workforce) { this.workforce = workforce; } public String getLegalStructure() { return legalStructure; } public void setLegalStructure(String legalStructure) { this.legalStructure = legalStructure; } public String getSector() { return sector; } public void setSector(String sector) { this.sector = sector; } public String getPostCode() { return postCode; } public void setPostCode(String postCode) { this.postCode = postCode; } public boolean isHighGrowth() { return highGrowth; } public void setHighGrowth(boolean highGrowth) { this.highGrowth = highGrowth; } public boolean isBasedInEngland() { return basedInEngland; } public void setBasedInEngland(boolean basedInEngland) { this.basedInEngland = basedInEngland; } public boolean isExportArea() { return exportArea; } public void setExportArea(boolean exportArea) { this.exportArea = exportArea; } public boolean isManufacturingSector() { return manufacturingSector; } public void setManufacturingSector(boolean manufacturingSector) { this.manufacturingSector = manufacturingSector; } public Map<String, List<Bfsf>> getSearchResult() { return searchResult; } public void setSearchResult(Map<String, List<Bfsf>> searchResult) { this.searchResult = searchResult; } public List<Lep> getLepResult() { return lepResult; } public void setLepResult(List<Lep> lepResult) { this.lepResult = lepResult; } }