22 lines
No EOL
1,010 B
XML
22 lines
No EOL
1,010 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.xsd">
|
|
|
|
<bean id="svrwxPluginName" class="java.lang.String">
|
|
<constructor-arg type="java.lang.String" value="svrwx" />
|
|
</bean>
|
|
|
|
<bean id="svrwxProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
|
|
<property name="pluginName" ref="svrwxPluginName" />
|
|
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.svrwx" />
|
|
<property name="dao" value="com.raytheon.uf.edex.plugin.svrwx.SvrWxRecordDao" />
|
|
<property name="record" value="com.raytheon.uf.common.dataplugin.svrwx.SvrWxRecord" />
|
|
</bean>
|
|
|
|
<bean factory-bean="pluginRegistry" factory-method="register">
|
|
<constructor-arg ref="svrwxPluginName"/>
|
|
<constructor-arg ref="svrwxProperties"/>
|
|
</bean>
|
|
|
|
</beans> |