comparison src/main/java/de/intevation/lada/model/stammdaten/AuthFunktion.java @ 1028:1c41c7b8f7c2 schema-update

Updated server application to new database model. THIS IS STILL WIP!!!
author Raimund Renkert <raimund.renkert@intevation.de>
date Fri, 08 Jul 2016 15:32:36 +0200
parents
children
comparison
equal deleted inserted replaced
1027:9971471d562c 1028:1c41c7b8f7c2
1 package de.intevation.lada.model.stammdaten;
2
3 import java.io.Serializable;
4
5 import javax.persistence.Entity;
6 import javax.persistence.Id;
7 import javax.persistence.Table;
8
9
10 /**
11 * The persistent class for the auth_funktion database table.
12 *
13 */
14 @Entity
15 @Table(name="auth_funktion")
16 public class AuthFunktion implements Serializable {
17 private static final long serialVersionUID = 1L;
18
19 @Id
20 private Integer id;
21
22 private String funktion;
23
24 public AuthFunktion() {
25 }
26
27 public Integer getId() {
28 return this.id;
29 }
30
31 public void setId(Integer id) {
32 this.id = id;
33 }
34
35 public String getFunktion() {
36 return this.funktion;
37 }
38
39 public void setFunktion(String funktion) {
40 this.funktion = funktion;
41 }
42
43 }
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)