comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/map/WMSDBLayerFacet.java @ 3300:e1cf76b3ecb4

Moved map and WSPLGEN code to subpackage 'map' in the model package. flys-artifacts/trunk@4985 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 13 Jul 2012 10:19:23 +0000
parents
children
comparison
equal deleted inserted replaced
3299:d76a889bc30d 3300:e1cf76b3ecb4
1 package de.intevation.flys.artifacts.model.map;
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 :

http://dive4elements.wald.intevation.org