comparison flys-artifacts/src/main/java/de/intevation/flys/artifacts/model/LayerInfo.java @ 1854:e372934f0c42

Replaced the dbconnection.include used by Mapserver - these information are provided by LayerInfo objects now, which reduces config overhead. flys-artifacts/trunk@3199 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Wed, 09 Nov 2011 15:00:29 +0000
parents 5364b86a0880
children dd467951335c
comparison
equal deleted inserted replaced
1853:5b2122a8bcbf 1854:e372934f0c42
5 5
6 protected String name; 6 protected String name;
7 protected String type; 7 protected String type;
8 protected String directory; 8 protected String directory;
9 protected String data; 9 protected String data;
10 protected String connection;
11 protected String connectionType;
10 protected String extent; 12 protected String extent;
11 protected String group; 13 protected String group;
12 protected String groupTitle; 14 protected String groupTitle;
13 protected String title; 15 protected String title;
14 protected String style; 16 protected String style;
54 } 56 }
55 57
56 58
57 public String getData() { 59 public String getData() {
58 return data; 60 return data;
61 }
62
63
64 public void setConnection(String connection) {
65 this.connection = connection;
66 }
67
68
69 public String getConnection() {
70 return connection;
71 }
72
73
74 public void setConnectionType(String connectionType) {
75 this.connectionType = connectionType;
76 }
77
78
79 public String getConnectionType() {
80 return connectionType;
59 } 81 }
60 82
61 83
62 public void setGroup(String group) { 84 public void setGroup(String group) {
63 this.group = group; 85 this.group = group;

http://dive4elements.wald.intevation.org