awips2/edexOsgi/com.raytheon.uf.edex.plugin.scan/res/spring/scan-common.xml
Dave Hladky a17dee033a Issue #1569 Switched aggregate record writing to pypies. General sweep of ingestDAT
Change-Id: I693debea540667cfda6efe1496dd1084b8d0e950

Former-commit-id: 2655952304 [formerly 7b3a310f67] [formerly 381aec5976 [formerly 2ea8409800917d8c9a4c76c3b63492a2eb1f2c62]]
Former-commit-id: 381aec5976
Former-commit-id: 5c66cbcd27
2013-02-14 13:58:32 -06:00

28 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="scanPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="scan" />
</bean>
<bean id="scanProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="scanPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.scan" />
<property name="dao"
value="com.raytheon.uf.common.dataplugin.scan.dao.ScanDao" />
<property name="record"
value="com.raytheon.uf.common.dataplugin.scan.ScanRecord" />
<property name="compression" value="LZF"/>
</bean>
<bean factory-bean="pluginRegistry" factory-method="register"
depends-on="radarRegistered,bufruaRegistered,gridRegistered">
<constructor-arg value="scan" />
<constructor-arg ref="scanProperties" />
</bean>
</beans>