ingo@1115: /* ingo@1115: * Copyright (c) 2010 by Intevation GmbH ingo@1115: * ingo@1115: * This program is free software under the LGPL (>=v2.1) ingo@1115: * Read the file LGPL.txt coming with the software for details ingo@1115: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@1115: */ ingo@1115: tim@597: package de.intevation.gnv.artifacts.services.requestobjects; sascha@779: tim@597: /** tim@826: * The default Implementation of Parameter. ingo@792: * sascha@780: * @author Tim Englich tim@597: */ tim@597: public class DefaultParameter implements Parameter { tim@597: sascha@778: tim@826: /** tim@826: * The id of the Parameter tim@826: */ tim@597: private String id = null; sascha@778: tim@826: /** tim@826: * The name of the Parameter tim@826: */ tim@597: private String name = null; sascha@778: tim@597: /** tim@597: * Constructor ingo@792: * @param id The id of this parameter. ingo@792: * @param name The name of this parameter. tim@597: */ tim@597: public DefaultParameter(String id, String name) { tim@597: super(); tim@597: this.id = id; tim@597: this.name = name; tim@597: } tim@597: tim@597: public String getID() { tim@597: return this.id; tim@597: } tim@597: tim@597: public String getName() { tim@597: return this.name; tim@597: } tim@597: } sascha@836: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :