view backend/src/main/java/org/dive4elements/river/model/HydrBoundaryPoly.java @ 8443:df65f24af5bc

(issue1762) Use getValue to obtain dateRange values The getToValue was always the initial value regardless of what has been entered in the form. According to the documentation both getToValue and getFromValue should return the "initial value" of the form field. But wether this means the value before validation corrections or the value the field is initialized with (which is also not true in both cases as the field is set only after creation) It returned the real value for the from date but not for the to date. With an explicit getValue we workaround this issue.
author Andre Heinecke <andre.heinecke@intevation.de>
date Wed, 22 Oct 2014 17:33:43 +0200
parents 4c3ccf2b0304
children 5e38e2924c07
line wrap: on
line source
/* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
 * Software engineering by Intevation GmbH
 *
 * 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 org.dive4elements.river.model;

import java.io.Serializable;
import java.util.List;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.OneToOne;
import javax.persistence.Table;
import javax.persistence.SequenceGenerator;

import org.hibernate.Session;
import org.hibernate.Query;
import org.hibernate.annotations.Type;

import com.vividsolutions.jts.geom.Geometry;

import org.dive4elements.river.backend.SessionHolder;


@Entity
@Table(name = "hydr_boundaries_poly")
public class HydrBoundaryPoly
implements   Serializable
{
    private Integer    id;
    private String     name;
    private River      river;
    private Geometry   geom;
    private SectieKind sectie;
    private SobekKind  sobek;
    private BoundaryKind kind;

    public HydrBoundaryPoly() {
    }


    @Id
    @SequenceGenerator(
        name           = "SEQUENCE_HYDR_BOUNDARIES_POLY_ID_SEQ",
        sequenceName   = "HYDR_BOUNDARIES_POLY_ID_SEQ",
        allocationSize = 1)
    @GeneratedValue(
        strategy  = GenerationType.SEQUENCE,
        generator = "SEQUENCE_HYDR_BOUNDARIES_POLY_ID_SEQ")
    @Column(name = "id")
    public Integer getId() {
        return id;
    }


    public void setId(Integer id) {
        this.id = id;
    }


    @OneToOne
    @JoinColumn(name = "river_id")
    public River getRiver() {
        return river;
    }


    public void setRiver(River river) {
        this.river = river;
    }


    @Column(name = "name")
    public String getName() {
        return name;
    }


    public void setName(String name) {
        this.name = name;
    }


    @Column(name = "geom")
    @Type(type = "org.hibernatespatial.GeometryUserType")
    public Geometry getGeom() {
        return geom;
    }


    public void setGeom(Geometry geom) {
        this.geom = geom;
    }


    public static List<HydrBoundaryPoly> getHydrBoundaries(int riverId, String name) {
        Session session = SessionHolder.HOLDER.get();

        Query query = session.createQuery(
            "from HydrBoundaryPoly where river.id =:river_id and name=:name");
        query.setParameter("river_id", riverId);
        query.setParameter("name", name);

        return query.list();
    }

    public static List<HydrBoundaryPoly> getHydrBoundaries(int riverId,
            int kind, int sectie, int sobek) {
        Session session = SessionHolder.HOLDER.get();

        String filter = " where river.id =:river_id";

        if (kind != -1) {
            filter += " and kind = " + kind;
        }
        if (sectie != -1) {
            filter += " and sectie = " + sectie;
        }
        if (sobek != -1){
            filter += " and sobek = " + sobek;
        }

        Query query = session.createQuery("from HydrBoundaryPoly" + filter);
        query.setParameter("river_id", riverId);
        return query.list();
    }

    /**
     * Get sectie.
     *
     * @return sectie as SectieKind.
     */
    @OneToOne
    @JoinColumn(name = "sectie")
    public SectieKind getSectie()
    {
        return sectie;
    }

    /**
     * Set sectie.
     *
     * @param sectie the value to set.
     */
    public void setSectie(SectieKind sectie)
    {
        this.sectie = sectie;
    }

    /**
     * Get sobek.
     *
     * @return sobek as SobekKind.
     */
    @OneToOne
    @JoinColumn(name = "sobek")
    public SobekKind getSobek()
    {
        return sobek;
    }

    /**
     * Set sobek.
     *
     * @param sobek the value to set.
     */
    public void setSobek(SobekKind sobek)
    {
        this.sobek = sobek;
    }

    /**
     * Get kind.
     *
     * @return kind as BoundaryKind.
     */
    @OneToOne
    @JoinColumn(name = "kind")
    public BoundaryKind getKind()
    {
        return kind;
    }

    /**
     * Set kind.
     *
     * @param kind the value to set.
     */
    public void setKind(BoundaryKind kind)
    {
        this.kind = kind;
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org