1 package org.sourceforge.vlibrary.user.valuebeans;
2
3 /**
4 * Value object representing a book edit transaction
5 * @version $Revision$ $Date$
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 /** Creates new BookEditTransaction */
16 public BookEditTransaction() {
17 }
18
19 /** Getter for property action.
20 * @return Value of property action.
21 */
22 public java.lang.String getAction() {
23 return action;
24 }
25
26 /** Setter for property action.
27 * @param action New value of property action.
28 */
29 public void setAction(java.lang.String action) {
30 this.action = action;
31 }
32
33 /** Getter for property id.
34 * @return Value of property id.
35 */
36 public long getId() {
37 return id;
38 }
39
40 /** Setter for property id.
41 * @param id New value of property id.
42 */
43 public void setId(long id) {
44 this.id = id;
45 }
46
47 /** Getter for property title.
48 * @return Value of property title.
49 */
50 public java.lang.String getTitle() {
51 return title;
52 }
53
54 /** Setter for property title.
55 * @param title New value of property title.
56 */
57 public void setTitle(java.lang.String title) {
58 this.title = title;
59 }
60 }