View Javadoc

1   /*
2    * Mapping.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 Mapping {
20      
21      /***
22       * Creates a new instance of Mapping 
23       */
24      public Mapping() {
25      }
26  
27      /***
28       * Holds value of property id.
29       */
30      private Long id;
31  
32      /***
33       * Getter for property id.
34       * @return Value of property id.
35       */
36      public Long getId() {
37  
38          return this.id;
39      }
40  
41      /***
42       * Setter for property id.
43       * @param id New value of property id.
44       */
45      public void setId(Long id) {
46  
47          this.id = id;
48      }
49  
50      /***
51       * Holds value of property dn.
52       */
53      private String dn;
54  
55      /***
56       * Getter for property dn.
57       * @return Value of property dn.
58       */
59      public String getDn() {
60  
61          return this.dn;
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       * Holds value of property account.
75       */
76      private String account;
77  
78      /***
79       * Getter for property account.
80       * @return Value of property account.
81       */
82      public String getAccount() {
83  
84          return this.account;
85      }
86  
87      /***
88       * Setter for property account.
89       * @param account New value of property account.
90       */
91      public void setAccount(String account) {
92  
93          this.account = account;
94      }
95  
96      /***
97       * Holds value of property map.
98       */
99      private String map;
100 
101     /***
102      * Getter for property group.
103      * @return Value of property group.
104      */
105     public String getMap()   {
106 
107         return this.map;
108     }
109 
110     /***
111      * Setter for property group.
112      * @param userGroup New value of property group.
113      */
114     public void setMap(String map)   {
115 
116         this.map = map;
117     }
118 
119     
120 }