view gwt-client/src/test/java/test/SimpleRecommendation.java @ 9127:dbb26bc81843

Testing
author gernotbelger
date Wed, 06 Jun 2018 13:05:57 +0200
parents
children 48d87af1243e
line wrap: on
line source
/** Copyright (C) 2017 by Bundesanstalt für Gewässerkunde
 * Software engineering by
 *  Björnsen Beratende Ingenieure GmbH
 *  Dr. Schumacher Ingenieurbüro für Wasser und Umwelt
 *
 * This file is Free Software under the GNU AGPL (>=v3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out the
 * documentation coming with Dive4Elements River for details.
 */
package test;

/**
 * @author Domenico Nardi Tironi
 *
 */
public class SimpleRecommendation {

    // entspricht den Bezeichnungen im Datacage-Export
    private final String factory;
    private final String ids;
    private final String target;

    public SimpleRecommendation(final String factory, final String ids, final String target) {
        this.factory = factory;
        this.ids = ids;
        this.target = target;
    }

    public String getIds() {
        return this.ids;
    }

    public String getTarget() {
        return this.target;
    }

    public String getFactory() {
        return this.factory;
    }

}

http://dive4elements.wald.intevation.org