View Javadoc

1   /*
2    * User.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.hibernate;
12  
13  import java.util.Date;
14  
15  /***
16   *
17   * @author carcassi
18   */
19  public class User {
20      
21      /*** Creates a new instance of User */
22      public User() {
23      }
24  
25      /***
26       * Holds value of property id.
27       */
28      private Long id;
29  
30      /***
31       * Getter for property id.
32       * @return Value of property id.
33       */
34      public Long getId() {
35  
36          return this.id;
37      }
38  
39      /***
40       * Setter for property id.
41       * @param id New value of property id.
42       */
43      public void setId(Long id) {
44  
45          this.id = id;
46      }
47  
48      /***
49       * Holds value of property dn.
50       */
51      private String dn;
52  
53      /***
54       * Getter for property dn.
55       * @return Value of property dn.
56       */
57      public String getDn() {
58  
59          return this.dn;
60      }
61  
62      /***
63       * Setter for property dn.
64       * @param dn New value of property dn.
65       */
66      public void setDn(String dn) {
67  
68          this.dn = dn;
69      }
70  
71      /***
72       * Holds value of property fqan.
73       */
74      private String fqan;
75  
76      /***
77       * Getter for property fqan.
78       * @return Value of property fqan.
79       */
80      public String getFqan() {
81  
82          return this.fqan;
83      }
84  
85      /***
86       * Setter for property fqan.
87       * @param fqan New value of property fqan.
88       */
89      public void setFqan(String fqan) {
90  
91          this.fqan = fqan;
92      }
93  
94      /***
95       * Holds value of property group.
96       */
97      private String group;
98  
99      /***
100      * Getter for property group.
101      * @return Value of property group.
102      */
103     public String getGroup() {
104 
105         return this.group;
106     }
107 
108     /***
109      * Setter for property group.
110      * @param group New value of property group.
111      */
112     public void setGroup(String group) {
113 
114         this.group = group;
115     }
116     
117 }