awips2/edexOsgi/com.raytheon.uf.edex.plugin.bufrncwf/res/spring/bufrncwf-common.xml
Brian Clements 00490c2db2 Issue #2361 fixed ncwf hibernate pickup
the new way of finding hibernate classes requires project names to match package names
fixed ncwf to have matching package and project names


Former-commit-id: 4924917e28275d9bb8bb21feceb6016ce2c91c40
2013-11-14 17:12:02 -06:00

21 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-3.1.xsd">
<bean id="bufrncwfPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="bufrncwf" />
</bean>
<bean id="bufrncwfProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="bufrncwfPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrncwf" />
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrncwf.BUFRncwfDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrncwf.BUFRncwf" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg ref="bufrncwfPluginName"/>
<constructor-arg ref="bufrncwfProperties"/>
</bean>
</beans>