awips2/ncep/gov.noaa.nws.ncep.edex.plugin.airep/res/spring/airep-common.xml
Ben Steffensmeier bc0638de58 Issue #2317 Unify airep and ncairep.
Former-commit-id: 405f6beb9b20e4bda3d43173aa3e941af6b47399
2013-09-05 11:08:47 -05:00

20 lines
No EOL
954 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="airepPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="airep" />
</bean>
<bean id="airepProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="airepPluginName" />
<property name="pluginFQN" value="gov.noaa.nws.ncep.common.dataplugin.airep" />
<property name="dao" value="gov.noaa.nws.ncep.common.dataplugin.airep.dao.AirepDao" />
<property name="record" value="gov.noaa.nws.ncep.common.dataplugin.airep.AirepRecord" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg ref="airepPluginName"/>
<constructor-arg ref="airepProperties"/>
</bean>
</beans>