comparison gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/requestobjects/DefaultParameter.java @ 597:cf38b983d1f3

Added the Implementation of the MetaDataService which will deliver FIS and Parameters that match to Mapservices, Region and Layers that were sent to the Service. gnv-artifacts/trunk@653 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 01 Feb 2010 14:52:05 +0000
parents
children 9a828e5a2390
comparison
equal deleted inserted replaced
596:75ef37387e84 597:cf38b983d1f3
1 /**
2 *
3 */
4 package de.intevation.gnv.artifacts.services.requestobjects;
5 /**
6 * @author Tim Englich <tim.englich@intevation.de>
7 *
8 */
9 public class DefaultParameter implements Parameter {
10
11
12 private String id = null;
13
14 private String name = null;
15
16 /**
17 * Constructor
18 * @param id
19 * @param name
20 */
21 public DefaultParameter(String id, String name) {
22 super();
23 this.id = id;
24 this.name = name;
25 }
26
27 /**
28 * @see de.intevation.gnv.artifacts.services.requestobjects.Parameter#getID()
29 */
30 public String getID() {
31 return this.id;
32 }
33
34 /**
35 * @see de.intevation.gnv.artifacts.services.requestobjects.Parameter#getName()
36 */
37 public String getName() {
38 return this.name;
39 }
40
41 }

http://dive4elements.wald.intevation.org