Mercurial > dive4elements > river
view flys-backend/src/main/java/de/intevation/flys/model/HWSKind.java @ 5622:b28a6d05e969
Add a new mechanism in mapfish print call to add arbitary data maps
Data properties are identified by starting with mapfish-data
and they are then split in info value pairs where info
can be the description of the information and value the value
of the information to be transported in the data map.
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 09 Apr 2013 19:04:32 +0200 |
parents | 615e25b6440e |
children |
line wrap: on
line source
package de.intevation.flys.model; import java.io.Serializable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "hws_kinds") public class HWSKind implements Serializable { private Integer id; private String name; @Id @Column(name = "id") public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } /** * Get name. * * @return The name of the Hochwasserschutzanlagenart as String. */ @Column(name = "kind") public String getName() { return name; } /** * Set name. * * @param name the value to set. */ public void setName(String name) { this.name = name; } }