view flys-backend/src/main/java/de/intevation/flys/importer/ImportPosition.java @ 4173:7d4480c0e68e

Allow users to select the current relevant discharge table in historical discharge table calculattion. In addition to this, the discharge tables in the helper panel displayed in the client is ordered in time.
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Thu, 18 Oct 2012 12:13:48 +0200
parents 67fd63e4ef66
children
line wrap: on
line source
package de.intevation.flys.importer;

import de.intevation.flys.model.Position;

import org.hibernate.Session;
import org.hibernate.Query;

import java.util.List;

public class ImportPosition
implements   Comparable<ImportPosition>
{
    protected String value;

    protected Position peer;

    public ImportPosition() {
    }

    public ImportPosition(String value) {
        this.value = value;
    }

    public int compareTo(ImportPosition other) {
        return value.compareTo(other.value);
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public Position getPeer() {
        if (peer == null) {
            Session session = ImporterSession.getInstance().getDatabaseSession();
            Query query = session.createQuery("from Position where value=:value");
            query.setString("value", value);
            List<Position> positions = query.list();
            if (positions.isEmpty()) {
                peer = new Position(value);
                session.save(peer);
            }
            else {
                peer = positions.get(0);
            }
        }
        return peer;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org