awips2/edexOsgi/com.raytheon.uf.edex.plugin.fog/res/spring/fog-common.xml
Nate Jensen df95db8f78 Issue #2142 removing more dependencies on edex.common
Change-Id: I6fa6d1957f6aeee3b22f96164c7da4509b06eaaf

Former-commit-id: 231c873711159c9a59f0bc4e25e70cc9c989ecc0
2013-08-13 09:09:05 -05:00

22 lines
No EOL
933 B
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="fogPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="fog" />
</bean>
<bean id="fogProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="fogPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.fog" />
<property name="dao" value="com.raytheon.uf.edex.plugin.fog.FogDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.fog.FogRecord" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="fog"/>
<constructor-arg ref="fogProperties"/>
</bean>
</beans>