awips2/edexOsgi/com.raytheon.uf.edex.plugin.bufrsigwx/res/spring/bufrsigwx-common.xml
2022-05-05 12:34:50 -05:00

22 lines
No EOL
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.xsd">
<bean id="bufrsigwxPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="bufrsigwx" />
</bean>
<bean id="bufrsigwxProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="bufrsigwxPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrsigwx" />
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrsigwx.SigWxDataDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrsigwx.SigWxData" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg ref="bufrsigwxPluginName" />
<constructor-arg ref="bufrsigwxProperties"/>
</bean>
</beans>