KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > setup > sl > HibernateSchemaLoaderConfig


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.setup.sl;
10
11 import org.jboss.portal.setup.config.HibernateConfig;
12
13
14 import java.util.Properties JavaDoc;
15
16 /**
17  * @author <a HREF="mailto:palber@novell.com">Polina Alber</a>
18  * Date: Apr 13, 2005; Time: 12:58:56 AM
19  * @since JBoss portal 2.0
20  * Interface org.jboss.portal.setup.sl.HibernateSchemaLoaderConfig
21  * is an abstraction of Hibernate schema loader configuration.
22  */

23 public interface HibernateSchemaLoaderConfig extends SchemaLoaderConfig
24 {
25
26    /**
27     * @return hibernate configuration
28     */

29    HibernateConfig getHibernateConfig();
30
31    /**
32     * @param hbConfig a hibernate configuration
33     */

34    void setHibernateConfig(HibernateConfig hbConfig);
35
36    /**
37     * @return a boolean flag; when 'true' means that <code>SchemaExport</code> for schema loading
38     */

39    boolean getUseHibernateSchemaExport();
40
41
42 }
43
Popular Tags