awips2/edexOsgi/com.raytheon.edex.plugin.radar/res/spring/radar-common.xml
Steve Harris c56be8a332 13.5.1-4 baseline
Former-commit-id: e197f23ce3 [formerly d18b403b332dff67d1c85d4317bbceda337d1b41]
Former-commit-id: 70e4ff30a6
2013-06-28 09:46:25 -04:00

23 lines
No EOL
1.1 KiB
XML

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
<bean id="radarPathProvider"
class="com.raytheon.uf.common.dataplugin.radar.RadarPathProvider" />
<bean id="radarProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="radar" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.radar" />
<property name="dao" value="com.raytheon.edex.plugin.radar.dao.RadarDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.radar.RadarRecord" />
<property name="pathProvider">
<ref bean="radarPathProvider" />
</property>
<property name="compression" value="LZF"/>
</bean>
<bean id="radarRegistered" factory-bean="pluginRegistry"
factory-method="register" depends-on="textRegistered">
<constructor-arg value="radar" />
<constructor-arg ref="radarProperties" />
</bean>
</beans>