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="modelsoundingPluginName" class="java.lang.String">
|
|
<constructor-arg type="java.lang.String" value="modelsounding" />
|
|
</bean>
|
|
|
|
<bean id="modelsoundingProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
|
|
<property name="pluginName" ref="modelsoundingPluginName" />
|
|
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.modelsounding" />
|
|
<property name="dao" value="com.raytheon.uf.edex.plugin.modelsounding.dao.ModelSoundingDAO" />
|
|
<property name="record" value="com.raytheon.uf.common.dataplugin.modelsounding.SoundingSite" />
|
|
</bean>
|
|
|
|
<bean factory-bean="pluginRegistry" factory-method="register">
|
|
<constructor-arg ref="modelsoundingPluginName"/>
|
|
<constructor-arg ref="modelsoundingProperties"/>
|
|
</bean>
|
|
|
|
</beans> |