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      
23      /** Creates a new instance of User */
24      public HibernateUser() {
25      }
26  
27      /**
28       * Getter for property dn.
29       * @return Value of property dn.
30       */
31      public String getDn() {
32  
33          return this.dn;
34      }
35  
36      /**
37       * Getter for property fqan.
38       * @return Value of property fqan.
39       */
40      public String getFqan() {
41  
42          return this.fqan;
43      }
44  
45      /**
46       * Getter for property group.
47       * @return Value of property group.
48       */
49      public String getGroup() {
50  
51          return this.group;
52      }
53  
54      /**
55       * Getter for property id.
56       * @return Value of property id.
57       */
58      public Long getId() {
59  
60          return this.id;
61      }
62  
63      /**
64       * Setter for property dn.
65       * @param dn New value of property dn.
66       */
67      public void setDn(String dn) {
68  
69          this.dn = dn;
70      }
71  
72      /**
73       * Setter for property fqan.
74       * @param fqan New value of property fqan.
75       */
76      public void setFqan(String fqan) {
77  
78          this.fqan = fqan;
79      }
80  
81      /**
82       * Setter for property group.
83       * @param group New value of property group.
84       */
85      public void setGroup(String group) {
86  
87          this.group = group;
88      }
89  
90      /**
91       * Setter for property id.
92       * @param id New value of property id.
93       */
94      public void setId(Long id) {
95  
96          this.id = id;
97      }
98      
99  }