awips2/edexOsgi/com.raytheon.uf.edex.plugin.qc/res/spring/qc-common.xml

18 lines
829 B
XML
Raw Normal View History

2018-06-19 15:32:00 -06:00
<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="qcProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="qc" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.qc" />
<property name="dao" value="com.raytheon.uf.edex.plugin.qc.dao.QCDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.qc.QCRecord" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="qc"/>
<constructor-arg ref="qcProperties"/>
</bean>
</beans>