awips2/ncep/gov.noaa.nws.ncep.edex.plugin.pgen/res/spring/pgen-common.xml
Nate Jensen f3258e77f7 Issue #1989 remove unused schemas
Change-Id: Ia040164481647fc384a264cd2126b8f9438df594

Former-commit-id: b0ad25ccd9e20b6bf994a3a46ce38298c363adff
2013-05-29 16:19:28 -05:00

21 lines
No EOL
974 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="pgenPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="pgen" />
</bean>
<bean id="pgenProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="pgenPluginName" />
<property name="pluginFQN" value="gov.noaa.nws.ncep.common.dataplugin.pgen" />
<property name="dao" value="gov.noaa.nws.ncep.edex.plugin.pgen.dao.PgenDao" />
<property name="record" value="gov.noaa.nws.ncep.common.dataplugin.pgen.PgenRecord" />
</bean>
<bean id="pgenRegistered" factory-bean="pluginRegistry" factory-method="register">
<constructor-arg ref="pgenPluginName"/>
<constructor-arg ref="pgenProperties"/>
</bean>
</beans>