comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/Capabilities.java @ 1411:63be3137abac

Parse and display WMS layers supported by a user specified WMS service. flys-client/trunk@3298 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 21 Nov 2011 21:00:03 +0000
parents ec6e4dad1279
children ea2aae01e7c4
comparison
equal deleted inserted replaced
1410:6bb2c1ffab2b 1411:63be3137abac
12 protected String fees; 12 protected String fees;
13 protected String accessConstraints; 13 protected String accessConstraints;
14 14
15 protected ContactInformation contactInformation; 15 protected ContactInformation contactInformation;
16 16
17 protected List<String> layers; 17 protected List<WMSLayer> layers;
18 18
19 19
20 public Capabilities() { 20 public Capabilities() {
21 layers = new ArrayList<String>(); 21 layers = new ArrayList<WMSLayer>();
22 } 22 }
23 23
24 24
25 /** 25 /**
26 * @param fees 26 * @param fees
31 String title, 31 String title,
32 String onlineResource, 32 String onlineResource,
33 ContactInformation contactInformation, 33 ContactInformation contactInformation,
34 String fees, 34 String fees,
35 String accessConstraints, 35 String accessConstraints,
36 List<String> layers 36 List<WMSLayer> layers
37 ) { 37 ) {
38 this.title = title; 38 this.title = title;
39 this.onlineResource = onlineResource; 39 this.onlineResource = onlineResource;
40 this.contactInformation = contactInformation; 40 this.contactInformation = contactInformation;
41 this.fees = fees; 41 this.fees = fees;
67 public String getAccessConstraints() { 67 public String getAccessConstraints() {
68 return accessConstraints; 68 return accessConstraints;
69 } 69 }
70 70
71 71
72 public List<String> getLayers() { 72 public List<WMSLayer> getLayers() {
73 return layers; 73 return layers;
74 } 74 }
75 } 75 }
76 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : 76 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org