1 package org.sourceforge.vlibrary.user.valuebeans;
2
3
4
5
6
7
8 public class BookEditTransaction {
9 private String title = null;
10
11 private long id = 0;
12
13 private String action = null;
14
15
16 public BookEditTransaction() {
17 }
18
19
20
21
22 public java.lang.String getAction() {
23 return action;
24 }
25
26
27
28
29 public void setAction(java.lang.String action) {
30 this.action = action;
31 }
32
33
34
35
36 public long getId() {
37 return id;
38 }
39
40
41
42
43 public void setId(long id) {
44 this.id = id;
45 }
46
47
48
49
50 public java.lang.String getTitle() {
51 return title;
52 }
53
54
55
56
57 public void setTitle(java.lang.String title) {
58 this.title = title;
59 }
60 }