view gnv/src/main/java/de/intevation/gnv/artifactdatabase/objects/DefaultOutputParameter.java @ 683:d49e8695786c

Ordered imports. Removed needless imports. Removed empty headers. gnv/trunk@855 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Mon, 29 Mar 2010 09:10:25 +0000
parents 15ac78a91d1b
children 57fa8019fbdc
line wrap: on
line source
package de.intevation.gnv.artifactdatabase.objects;

/**
 * @author Tim Englich <tim.englich@intevation.de>
 *
 */
public class DefaultOutputParameter implements OutputParameter {

    /**
     * The UID of this Class.
     */
    private static final long serialVersionUID = -8416057640116638152L;

    private String name = null;

    private String value = null;

    private String description = null;

    private String type = null;

    /**
     * Constructor
     *
     * @param name
     * @param value
     * @param description
     */
    public DefaultOutputParameter(String name, String value,
                                  String description, String type) {
        super();
        this.name = name;
        this.value = value;
        this.description = description;
        this.type = type;
    }

    /**
     * @see de.intevation.gnv.artifactdatabase.objects.OutputParameter#getName()
     */
    public String getName() {
        return this.name;
    }

    /**
     * @see de.intevation.gnv.artifactdatabase.objects.OutputParameter#getValue()
     */
    public String getValue() {
        return this.value;
    }

    public String getDescription() {
        return this.description;
    }

    public String getType() {
        return this.type;
    }

}

http://dive4elements.wald.intevation.org