1 package org.sourceforge.vlibrary.user.valuebeans;
2
3 /**
4 * Value object representing a book checkin/checkout transaction
5 * @version $Revision$ $Date$
6 *
7 */
8 public class BookMoveTransaction {
9 private String readerEmail = null;
10
11 private String readerName = null;
12
13 private String bookTitle = null;
14
15 private String transaction = null;
16
17 private long location;
18
19 /** Creates new BookMoveTransaction */
20 public BookMoveTransaction() {
21 }
22
23 /** Getter for property bookTitle.
24 * @return Value of property bookTitle.
25 */
26 public String getBookTitle() {
27 return bookTitle;
28 }
29
30 /** Setter for property bookTitle.
31 * @param bookTitle New value of property bookTitle.
32 */
33 public void setBookTitle(java.lang.String bookTitle) {
34 this.bookTitle = bookTitle;
35 }
36
37 /** Getter for property readerEmail.
38 * @return Value of property readerEmail.
39 */
40 public String getReaderEmail() {
41 return readerEmail;
42 }
43
44 /** Setter for property readerEmail.
45 * @param readerEmail New value of property readerEmail.
46 */
47 public void setReaderEmail(java.lang.String readerEmail) {
48 this.readerEmail = readerEmail;
49 }
50
51 /** Getter for property readerName.
52 * @return Value of property readerName.
53 */
54 public String getReaderName() {
55 return readerName;
56 }
57
58 /** Setter for property readerName.
59 * @param readerName New value of property readerName.
60 */
61 public void setReaderName(String readerName) {
62 this.readerName = readerName;
63 }
64
65 /** Getter for property transaction.
66 * @return Value of property transaction.
67 */
68 public String getTransaction() {
69 return transaction;
70 }
71
72 /** Setter for property transaction.
73 * @param transaction New value of property transaction.
74 */
75 public void setTransaction(String transaction) {
76 this.transaction = transaction;
77 }
78
79 /**
80 * @return the location
81 */
82 public long getLocation() {
83 return location;
84 }
85
86 /**
87 * @param location the location to set
88 */
89 public void setLocation(long location) {
90 this.location = location;
91 }
92
93 }