comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/DBLayerInfo.java @ 1792:49ad801076e4

Enabled the MapGenerator to create WMS layers with database datastore - riveraxis is the first layer that is no longer fetched from static WMS service but from user specific one. flys-artifacts/trunk@3115 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 28 Oct 2011 13:48:02 +0000
parents
children
comparison
equal deleted inserted replaced
1791:e0e5a5b51a40 1792:49ad801076e4
1 package de.intevation.flys.artifacts.model;
2
3
4 public class DBLayerInfo extends LayerInfo {
5
6 protected String filter;
7
8
9 public DBLayerInfo(
10 String name,
11 String type,
12 String filter,
13 String data,
14 String title)
15 {
16 this(name, type, filter, data, title, null, null);
17 }
18
19
20 public DBLayerInfo(
21 String name,
22 String type,
23 String filter,
24 String data,
25 String title,
26 String group,
27 String groupTitle
28 ) {
29 super(name, type, null, data, group, groupTitle, title);
30 this.filter = filter;
31 }
32
33
34 public String getFilter() {
35 return filter;
36 }
37 }
38 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org