View Javadoc

1   package org.sourceforge.vlibrary.security.forms;
2   
3   
4   import java.util.ArrayList;
5   
6   /**
7    * Form Bean for Admin Password Reset
8    * @version $Revision$ $Date$
9    */
10  public class AdminPasswordResetForm extends PasswordResetForm {
11      private static final long serialVersionUID = 0;
12      
13      private ArrayList readers = null;
14      private String uid = null;
15      
16      /** Getter for property readers.
17       * @return Value of property readers.
18       */
19      public ArrayList getReaders() {
20          return readers;
21      }
22      
23      /** Setter for property readers.
24       * @param readers New value of property readers.
25       */
26      public void setReaders(ArrayList readers) {
27          this.readers = readers;
28      }
29      
30      /** Getter for property uid.
31       * @return Value of property uid.
32       */
33      public String getUid() {
34          return uid;
35      }
36      
37      /** Setter for property uid.
38       * @param uid New value of property uid.
39       */
40      public void setUid(String uid) {
41          this.uid = uid;
42      }
43  }