KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > setup > dl > HibernateDataLoaderConfig


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.dl;
10
11 import org.jboss.portal.setup.config.HibernateConfig;
12
13 /**
14  * @author <a HREF="mailto:palber@novell.com">Polina Alber</a>
15  * Date: Apr 13, 2005; Time: 12:33:08 PM
16  * @since JBoss portal 2.0
17  * Interface org.jboss.portal.setup.dl.HibernateDataLoaderConfig
18  */

19 public interface HibernateDataLoaderConfig extends DataLoaderConfig
20 {
21
22
23    /**
24     * @return hibernate configuration
25     */

26    HibernateConfig getHibernateConfig();
27
28    /**
29     * @param hbConfig a hibernate configuration
30     */

31    void setHibernateConfig(HibernateConfig hbConfig);
32
33 }
34
Popular Tags