Change-Id: Ib75b9fec9293f858b638f5eb61140da575909a34 Former-commit-id:d40f52a0bc
[formerlyf2ac3dc537
] [formerlyc2a46e0b35
[formerly bbca9f1eb7b3bc568ab3cabc9ad83510afd7317f]] Former-commit-id:c2a46e0b35
Former-commit-id:bb723dc404
25 lines
No EOL
1.3 KiB
XML
25 lines
No EOL
1.3 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:amq="http://activemq.apache.org/schema/core" 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-2.0.xsd
|
|
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd
|
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.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> |