comparison src/main/java/de/intevation/lada/model/query/QueryFilter.java @ 296:b196ef9d8645

New model classes for query configs.
author Raimund Renkert <rrenkert@intevation.de>
date Thu, 15 Aug 2013 15:18:22 +0200
parents
children 71284b42ba39
comparison
equal deleted inserted replaced
295:512addede0ec 296:b196ef9d8645
1 package de.intevation.lada.model.query;
2
3
4 public class QueryFilter
5 {
6 private String dataIndex;
7 private String type;
8
9 public QueryFilter() {
10 }
11
12 public QueryFilter(String dataIndex, String type) {
13 this.dataIndex = dataIndex;
14 this.type = type;
15 }
16
17 public String getDataIndex() {
18 return dataIndex;
19 }
20
21 public void setDataIndex(String dataIndex) {
22 this.dataIndex = dataIndex;
23 }
24
25 public String getType() {
26 return type;
27 }
28
29 public void setType(String type) {
30 this.type = type;
31 }
32 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)