Ignore:
Timestamp:
Oct 2, 2011, 6:06:34 PM (13 years ago)
Author:
Solomon Blaz
Message:

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:
1 edited

Legend:

Unmodified
Added
Removed
  • EDIS/trunk/java/tracking-server-main/src/main/webapp/WEB-INF/config/data-access-config.xml

    r1252 r1257  
    22<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    33       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     <bean id="bigBoardDao" class="gov.va.med.edp.dao.rpc.VistaLinkBigBoardDao"/>
    6     <bean id="sessionDao" class="gov.va.med.edp.dao.rpc.VistaLinkSessionDao"/>
    7     <bean id="serverPackageVersionDao" class="gov.va.med.edp.dao.rpc.VistaLinkServerPackageVersionDao"/>
    8    
     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>
    916</beans>
Note: See TracChangeset for help on using the changeset viewer.