Change-Id: I3ccb07227ef6adef233898e7fae6678ea4d18c7f Former-commit-id: 2342170ce4cf51f12759afa26fc5af46f35c6188
21 lines
No EOL
1 KiB
XML
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="bufrsigwxPluginName" class="java.lang.String">
|
|
<constructor-arg type="java.lang.String" value="bufrsigwx" />
|
|
</bean>
|
|
|
|
<bean id="bufrsigwxProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
|
|
<property name="pluginName" ref="bufrsigwxPluginName" />
|
|
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.bufrsigwx" />
|
|
<property name="dao" value="com.raytheon.uf.edex.plugin.bufrsigwx.SigWxDataDao" />
|
|
<property name="record" value="com.raytheon.uf.common.dataplugin.bufrsigwx.SigWxData" />
|
|
</bean>
|
|
|
|
<bean factory-bean="pluginRegistry" factory-method="register">
|
|
<constructor-arg ref="bufrsigwxPluginName" />
|
|
<constructor-arg ref="bufrsigwxProperties"/>
|
|
</bean>
|
|
|
|
</beans> |