KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > modules > hibernate > HibernateProperties


1 /*
2  * Copyright (c) 2001, 2002 The XDoclet team
3  * All rights reserved.
4  */

5 package xdoclet.modules.hibernate;
6
7 import java.util.Collection JavaDoc;
8
9 /**
10  * <p>
11  *
12  * Common getter methods interface to avoid conditional checking since we cannot do a common base class.</p> File
13  * Creation Date: Feb 5, 2004<br>
14  * <br>
15  *
16  *
17  * @author <a HREF="mailto:fbrier at users.sourceforge.net">Frederick N. Brier</a>
18  * @created February 5, 2004
19  * @version $Revision: 1.4 $
20  */

21 public interface HibernateProperties
22 {
23     String JavaDoc getTransactionManagerStrategy();
24
25     String JavaDoc getUserTransactionName();
26
27     String JavaDoc getUserName();
28
29     String JavaDoc getPassword();
30
31     boolean getUseOuterJoin();
32
33     boolean getShowSql();
34
35     String JavaDoc getJndiName();
36
37     Collection JavaDoc getJndiProperties();
38
39     Collection JavaDoc getOtherProperties();
40
41     Collection JavaDoc getOtherMappings();
42
43     String JavaDoc getDataSource();
44
45     String JavaDoc getDialect();
46
47     String JavaDoc getDriver();
48
49     String JavaDoc getJdbcUrl();
50
51     String JavaDoc getPoolSize();
52 }
53
Popular Tags