source: ether_megapoli/persistence/implementation/dao-context.xml @ 89

Last change on this file since 89 was 89, checked in by vmipsl, 13 years ago

Import du projet MEGAPOLI

File size: 682 bytes
Line 
1<?com.medias.xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
3
4<!-- Application context DAO layer -->
5<beans>
6        <bean id="refPlateformDAO" class="com.ether.dao.PlateformDAOImpl">
7                <property name="sessionFactory">
8                        <ref bean="sessionFactory" />
9                </property>
10        </bean>
11
12        <bean id="refParameterDAO" class="com.ether.dao.ParameterDAOImpl">
13                <property name="sessionFactory">
14                        <ref bean="sessionFactory" />
15                </property>
16        </bean>
17
18        <bean id="refValueDAO" class="com.ether.dao.ValueDAOImpl">
19                <property name="sessionFactory">
20                        <ref bean="sessionFactory" />
21                </property>
22        </bean>
23
24</beans>
Note: See TracBrowser for help on using the repository browser.