awips2/edexOsgi/com.raytheon.uf.edex.plugin.bufrmos/res/spring/bufrmos-common.xml
2017-04-21 18:33:55 -06:00

76 lines
No EOL
4 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="bufrmosAvnProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="bufrmosAVN" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrmos" />
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrmos.dao.BufrMOSDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrmos.common.BufrMosAvnData" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="bufrmosAVN"/>
<constructor-arg ref="bufrmosAvnProperties"/>
</bean>
<bean id="bufrmosEtaProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="bufrmosETA" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrmos" />
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrmos.dao.BufrMOSDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrmos.common.BufrMosEtaData" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="bufrmosETA"/>
<constructor-arg ref="bufrmosEtaProperties"/>
</bean>
<bean id="bufrmosGfsProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="bufrmosGFS" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrmos" />
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrmos.dao.BufrMOSDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrmos.common.BufrMosGfsData" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="bufrmosGFS"/>
<constructor-arg ref="bufrmosGfsProperties"/>
</bean>
<bean id="bufrmosHpcProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="bufrmosHPC" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrmos" />
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrmos.dao.BufrMOSDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrmos.common.BufrMosHpcData" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="bufrmosHPC"/>
<constructor-arg ref="bufrmosHpcProperties"/>
</bean>
<bean id="bufrmosLampProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="bufrmosLAMP" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrmos" />
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrmos.dao.BufrMOSDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrmos.common.BufrMosLampData" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="bufrmosLAMP"/>
<constructor-arg ref="bufrmosLampProperties"/>
</bean>
<bean id="bufrmosMrfProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="bufrmosMRF" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrmos" />
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrmos.dao.BufrMOSDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrmos.common.BufrMosMrfData" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="bufrmosMRF"/>
<constructor-arg ref="bufrmosMrfProperties"/>
</bean>
</beans>