source: vlo/trunk/vlo_webapp/src/main/java/eu/clarin/cmdi/vlo/importer/FacetConfiguration.java @ 995

Last change on this file since 995 was 995, checked in by patdui, 13 years ago
  • added test for lrt mapping
File size: 741 bytes
Line 
1package eu.clarin.cmdi.vlo.importer;
2
3public class FacetConfiguration {
4
5    private String name;
6    private String pattern;
7    private boolean caseInsensitive= false;
8
9    public void setCaseInsensitive(boolean caseValue) {
10        this.caseInsensitive = caseValue;
11    }
12
13    public boolean isCaseInsensitive() {
14        return caseInsensitive;
15    }
16
17    public void setPattern(String pattern) {
18        this.pattern = pattern;
19    }
20
21    public String getPattern() {
22        return pattern;
23    }
24
25    public void setName(String name) {
26        this.name = name;
27    }
28
29    public String getName() {
30        return name;
31    }
32   
33    @Override
34    public String toString() {
35        return "name="+name+", pattern="+pattern;
36    }
37}
Note: See TracBrowser for help on using the repository browser.