Mercurial > dive4elements > river
comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/WMSDBLayerFacet.java @ 3814:8083f6384023
merged flys-artifacts/pre2.6-2012-01-04
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:56 +0200 |
parents | a80d33a3bcca |
children |
comparison
equal
deleted
inserted
replaced
1491:2a00f4849738 | 3814:8083f6384023 |
---|---|
1 package de.intevation.flys.artifacts.model; | |
2 | |
3 import de.intevation.flys.artifacts.states.DefaultState.ComputeType; | |
4 | |
5 | |
6 public class WMSDBLayerFacet extends WMSLayerFacet { | |
7 | |
8 protected String data; | |
9 protected String filter; | |
10 protected String labelItem; | |
11 protected String geometryType; | |
12 protected String connection; | |
13 protected String connectionType; | |
14 | |
15 | |
16 public WMSDBLayerFacet() { | |
17 super(); | |
18 } | |
19 | |
20 | |
21 public WMSDBLayerFacet(int index, String name, String description) { | |
22 this(index, name, description, ComputeType.FEED, null, null); | |
23 } | |
24 | |
25 | |
26 public WMSDBLayerFacet( | |
27 int index, | |
28 String name, | |
29 String description, | |
30 ComputeType type, | |
31 String stateId, | |
32 String hash | |
33 | |
34 ) { | |
35 super(index, name, description, type, stateId, hash); | |
36 } | |
37 | |
38 | |
39 public WMSDBLayerFacet( | |
40 int index, | |
41 String name, | |
42 String description, | |
43 ComputeType type, | |
44 String stateId, | |
45 String hash, | |
46 String url | |
47 ) { | |
48 super(index, name, description, type, stateId, hash, url); | |
49 } | |
50 | |
51 | |
52 public void setFilter(String filter) { | |
53 this.filter = filter; | |
54 } | |
55 | |
56 public String getFilter() { | |
57 return filter; | |
58 } | |
59 | |
60 public void setData(String data) { | |
61 this.data = data; | |
62 } | |
63 | |
64 public String getData() { | |
65 return data; | |
66 } | |
67 | |
68 public void setGeometryType(String geometryType) { | |
69 this.geometryType = geometryType; | |
70 } | |
71 | |
72 public String getGeometryType() { | |
73 return geometryType; | |
74 } | |
75 | |
76 public void setConnection(String connection) { | |
77 this.connection = connection; | |
78 } | |
79 | |
80 public String getConnection() { | |
81 return connection; | |
82 } | |
83 | |
84 public void setConnectionType(String connectionType) { | |
85 this.connectionType = connectionType; | |
86 } | |
87 | |
88 public String getConnectionType() { | |
89 return connectionType; | |
90 } | |
91 | |
92 public void setLabelItem(String labelItem) { | |
93 this.labelItem = labelItem; | |
94 } | |
95 | |
96 public String getLabelItem() { | |
97 return labelItem; | |
98 } | |
99 | |
100 | |
101 @Override | |
102 public boolean isQueryable() { | |
103 return true; | |
104 } | |
105 } | |
106 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |