comparison src/main/java/de/intevation/lada/model/land/AuditTrailProbe.java @ 1308:db46646375e3

Added action to probe audit trail.
author Raimund Renkert <raimund.renkert@intevation.de>
date Wed, 08 Mar 2017 09:44:11 +0100
parents 03670cc25357
children
comparison
equal deleted inserted replaced
1307:c2df9c848e9d 1308:db46646375e3
39 private JsonNode rowData; 39 private JsonNode rowData;
40 40
41 @Column(name="tstamp") 41 @Column(name="tstamp")
42 private Timestamp tstamp; 42 private Timestamp tstamp;
43 43
44 @Column(name="action")
45 private String action;
46
44 @Column(name="messungs_id") 47 @Column(name="messungs_id")
45 private Integer messungsId; 48 private Integer messungsId;
46 49
47 @Column(name="object_id") 50 @Column(name="object_id")
48 private Integer objectId; 51 private Integer objectId;
78 81
79 public void setTstamp(Timestamp tstamp) { 82 public void setTstamp(Timestamp tstamp) {
80 this.tstamp = tstamp; 83 this.tstamp = tstamp;
81 } 84 }
82 85
86 public String getAction() {
87 return action;
88 }
89
90 public void setAction(String action) {
91 this.action = action;
92 }
93
83 public Integer getMessungsId() { 94 public Integer getMessungsId() {
84 return this.messungsId; 95 return this.messungsId;
85 } 96 }
86 97
87 public void setMessungsId(Integer messungsId) { 98 public void setMessungsId(Integer messungsId) {
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)