awips2/edexOsgi/com.raytheon.uf.edex.plugin.vil/res/spring/vil-common.xml
Nate Jensen ce0c8f3259 Issue #2142 remove some uf.common dependencies on edex.common
Change-Id: I327d9c6a184c2a9b422c02a39a2268459775a887

Former-commit-id: 94096b8f65 [formerly c0c65319cd731aea51f730f700b0fda3c6992d38]
Former-commit-id: 48758e64ef
2013-08-12 12:47:51 -05:00

28 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="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.edex.plugin.vil.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>