awips2/edexOsgi/com.raytheon.uf.edex.plugin.vil/res/spring/vil-common.xml
Richard Peter 67da3874f4 Issue #1257: Update pypies group referencing and enable compression for radar and vil
Change-Id: Ib75b9fec9293f858b638f5eb61140da575909a34

Former-commit-id: d40f52a0bc [formerly f2ac3dc537] [formerly c2a46e0b35 [formerly bbca9f1eb7b3bc568ab3cabc9ad83510afd7317f]]
Former-commit-id: c2a46e0b35
Former-commit-id: bb723dc404
2012-10-09 17:21:56 -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>