comparison flys-backend/src/main/java/de/intevation/flys/model/NamedMainValues.java @ 167:15d515fe15f5

Added POJOs to be mapped to schema. flys-backend/trunk@1456 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 10 Mar 2011 13:44:51 +0000
parents
children 86a1bd9cc50e
comparison
equal deleted inserted replaced
166:56eb8f1b42cf 167:15d515fe15f5
1 package de.intevation.flys.model;
2
3 import java.io.Serializable;
4
5 public class NamedMainValues
6 implements Serializable
7 {
8 private Long id;
9 private String name;
10 private MainValueType type;
11
12 public NamedMainValues() {
13 }
14
15 public void setId(Long id) {
16 this.id = id;
17 }
18
19 public Long getId() {
20 return id;
21 }
22
23 public void setName(String name) {
24 this.name = name;
25 }
26
27 public String getName() {
28 return name;
29 }
30
31 public void setType(MainValueType type) {
32 this.type = type;
33 }
34
35 public MainValueType getType() {
36 return type;
37 }
38 }
39 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org