1 package org.sourceforge.vlibrary.user.forms;
2
3 import java.util.ArrayList;
4
5 import org.apache.struts.action.ActionForm;
6
7 /**
8 * Form to support admin reader profile management
9 * @version $Revision$ $Date$
10 */
11 public class ManageReaderForm extends ActionForm {
12
13 private static final long serialVersionUID = 0;
14
15 private String action;
16 private ArrayList readers;
17 private long reader;
18
19 /** Creates new ManageReaderForm */
20 public ManageReaderForm() {
21 }
22
23 /** Getter for property action.
24 * @return Value of property action.
25 */
26 public java.lang.String getAction() {
27 return action;
28 }
29
30 /** Setter for property action.
31 * @param action New value of property action.
32 */
33 public void setAction(java.lang.String action) {
34 this.action = action;
35 }
36
37 /** Getter for property reader.
38 * @return Value of property reader.
39 */
40 public long getReader() {
41 return reader;
42 }
43
44 /** Setter for property reader.
45 * @param reader New value of property reader.
46 */
47 public void setReader(long reader) {
48 this.reader = reader;
49 }
50
51 /** Getter for property readers.
52 * @return Value of property readers.
53 */
54 public java.util.ArrayList getReaders() {
55 return readers;
56 }
57
58 /** Setter for property readers.
59 * @param readers New value of property readers.
60 */
61 public void setReaders(java.util.ArrayList readers) {
62 this.readers = readers;
63 }
64 }