Mercurial > dive4elements > river
view flys-backend/src/main/java/de/intevation/flys/model/CrossSection.java @ 1235:47ce1fab8464
Added a static function that returns all CrossSectionTracks of a specific river.
flys-backend/trunk@2611 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Tue, 30 Aug 2011 15:14:59 +0000 |
parents | 31d8638760b1 |
children | 8be27b950dbe |
line wrap: on
line source
package de.intevation.flys.model; import java.io.Serializable; import java.util.List; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.GeneratedValue; import javax.persistence.Column; import javax.persistence.SequenceGenerator; import javax.persistence.GenerationType; import javax.persistence.OneToOne; import javax.persistence.OneToMany; import javax.persistence.OrderBy; import javax.persistence.JoinColumn; @Entity @Table(name = "cross_sections") public class CrossSection implements Serializable { private Integer id; private River river; private TimeInterval timeInterval; private String description; private List<CrossSectionLine> lines; public CrossSection() { } public CrossSection( River river, TimeInterval timeInterval, String description ) { this.river = river; this.timeInterval = timeInterval; this.description = description; } @Id @SequenceGenerator( name = "SEQUENCE_CROSS_SECTIONS_ID_SEQ", sequenceName = "CROSS_SECTIONS_ID_SEQ", allocationSize = 1) @GeneratedValue( strategy = GenerationType.SEQUENCE, generator = "SEQUENCE_CROSS_SECTIONS_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; } @OneToOne @JoinColumn(name = "time_interval_id") public TimeInterval getTimeInterval() { return timeInterval; } public void setTimeInterval(TimeInterval timeInterval) { this.timeInterval = timeInterval; } @Column(name = "description") public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } @OneToMany @OrderBy("km") @JoinColumn(name="cross_section_id") public List<CrossSectionLine> getLines() { return lines; } public void setLines(List<CrossSectionLine> lines) { this.lines = lines; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :