KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > bull > eclipse > jonas > actions > hibernate > GlobalHBMValue


1 /*
2  * Created on 12 févr. 2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package com.bull.eclipse.jonas.actions.hibernate;
8
9 import java.util.Collection JavaDoc;
10
11 /**
12  * @author riase
13  *
14  * TODO To change the template for this generated type comment go to
15  * Window - Preferences - Java - Code Style - Code Templates
16  */

17 public class GlobalHBMValue {
18     private String JavaDoc datasourceJNDI;
19     private String JavaDoc dialect;
20     private Collection JavaDoc hbmList;
21
22     public String JavaDoc getDialect() {
23         return dialect;
24     }
25     public void setDialect(String JavaDoc dialect) {
26         this.dialect = dialect;
27     }
28     public Collection JavaDoc getHbmList() {
29         return hbmList;
30     }
31     public void setHbmList(Collection JavaDoc hbmList) {
32         this.hbmList = hbmList;
33     }
34     public String JavaDoc getDatasourceJNDI() {
35         return datasourceJNDI;
36     }
37     public void setDatasourceJNDI(String JavaDoc datasourceJNDI) {
38         this.datasourceJNDI = datasourceJNDI;
39     }
40 }
41
Popular Tags