View Javadoc

1   /*
2    * HibernateUser.java
3    *
4    * Created on June 15, 2005, 1:06 PM
5    *
6    * To change this template, choose Tools | Options and locate the template under
7    * the Source Creation and Management node. Right-click the template and choose
8    * Open. You can then make changes to the template in the Source Editor.
9    */
10  
11  package gov.bnl.gums.db;
12  
13  /**
14   *
15   * @author Gabriele Carcassi, Jay Packard
16   */
17  public class HibernateUser {
18      private Long id;
19      private String dn;
20      private String fqan;
21      private String group;
22      private String email;
23      
24      /** Creates a new instance of User */
25      public HibernateUser() {
26      }
27  
28      /**
29       * Getter for property dn.
30       * @return Value of property dn.
31       */
32      public String getDn() {
33  
34          return this.dn;
35      }
36  
37      /**
38       * Getter for property fqan.
39       * @return Value of property fqan.
40       */
41      public String getFqan() {
42  
43          return this.fqan;
44      }
45  
46      /**
47       * Getter for property group.
48       * @return Value of property group.
49       */
50      public String getGroup() {
51  
52          return this.group;
53      }
54  
55      /**
56       * Getter for property id.
57       * @return Value of property id.
58       */
59      public Long getId() {
60  
61          return this.id;
62      }
63  
64      /**
65       * Setter for property dn.
66       * @param dn New value of property dn.
67       */
68      public void setDn(String dn) {
69  
70          this.dn = dn;
71      }
72  
73      /**
74       * Setter for property fqan.
75       * @param fqan New value of property fqan.
76       */
77      public void setFqan(String fqan) {
78  
79          this.fqan = fqan;
80      }
81  
82      /**
83       * Setter for property group.
84       * @param group New value of property group.
85       */
86      public void setGroup(String group) {
87  
88          this.group = group;
89      }
90  
91      /**
92       * Setter for property id.
93       * @param id New value of property id.
94       */
95      public void setId(Long id) {
96  
97          this.id = id;
98      }
99  
100 	public String getEmail() {
101 		return email;
102 	}
103 
104 	public void setEmail(String email) {
105 		this.email = email;
106 	}
107     
108 }