awips2/edexOsgi/com.raytheon.uf.edex.plugin.vil/res/spring/vil-common.xml
Steve Harris bb8fe6e556 12.11.1-5 baseline
Former-commit-id: a0eaf651ff [formerly 03f3f3c36a [formerly a2b34f5c48d7a8e6e73a35d18dd565222bc7caa7]]
Former-commit-id: 03f3f3c36a
Former-commit-id: 362d6ffaca
2012-10-18 15:46:42 -05:00

31 lines
No EOL
1.4 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="vilPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="vil" />
</bean>
<bean id="vilProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="vilPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.vil" />
<property name="dao" value="com.raytheon.uf.common.dataplugin.vil.dao.VILDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.vil.VILRecord" />
<property name="dependencyFQNs">
<list>
<value>com.raytheon.uf.common.dataplugin.radar</value>
</list>
</property>
<property name="compression" value="LZF"/>
</bean>
<bean factory-bean="pluginRegistry" factory-method="register" depends-on="radarRegistered">
<constructor-arg value="vil"/>
<constructor-arg ref="vilProperties"/>
</bean>
</beans>