Add checkbox to result composite
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / view / search / facet / term / TermFilter.java
1 /**
2 * Copyright (C) 2019 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.view.search.facet.term;
10
11 import eu.etaxonomy.cdm.persistence.dto.TermVocabularyDto;
12
13 /**
14 * @author pplitzner
15 * @since Jan 22, 2019
16 *
17 */
18 public class TermFilter {
19
20 private TermVocabularyDto vocabulary;
21
22 /**
23 * @param vocabulary
24 */
25 public TermFilter(TermVocabularyDto vocabulary) {
26 super();
27 this.vocabulary = vocabulary;
28 }
29
30 /**
31 * @return the vocabulary
32 */
33 public TermVocabularyDto getVocabulary() {
34 return vocabulary;
35 }
36
37 /**
38 * @param vocabulary the vocabulary to set
39 */
40 public void setVocabulary(TermVocabularyDto vocabulary) {
41 this.vocabulary = vocabulary;
42 }
43
44
45
46 }