source: EDIS/trunk/java/tracking-server-main/src/main/webapp/WEB-INF/config/data-access-config.xml@ 1257

Last change on this file since 1257 was 1257, checked in by Solomon Blaz, 13 years ago

deleted duplicate classes from gov.va.med.edp.rpc package in favor of ones in gov.va.med.edp.vistalink and configured rest of application accordingly

File size: 967 bytes
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
4 <bean id="trackingDao" class="gov.va.med.edp.dao.rpc.VistaLinkTrackingDao">
5 <property name="rpcTemplate" ref="vistaLinkRpcTemplate"/>
6 </bean>
7 <bean id="bigBoardDao" class="gov.va.med.edp.dao.rpc.VistaLinkBigBoardDao">
8 <property name="rpcTemplate" ref="vistaLinkRpcTemplate"/>
9 </bean>
10 <bean id="sessionDao" class="gov.va.med.edp.dao.rpc.VistaLinkSessionDao">
11 <property name="rpcTemplate" ref="vistaLinkRpcTemplate"/>
12 </bean>
13 <bean id="serverPackageVersionDao" class="gov.va.med.edp.dao.rpc.VistaLinkServerPackageVersionDao">
14 <property name="rpcTemplate" ref="vistaLinkRpcTemplate"/>
15 </bean>
16</beans>
Note: See TracBrowser for help on using the repository browser.