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

23 lines
1 KiB
XML
Raw Normal View History

2022-05-05 12:34:50 -05: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="poessoundingPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="poessounding" />
</bean>
<bean id="poessoundingProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="poessoundingPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.poessounding" />
<property name="dao" value="com.raytheon.edex.plugin.poessounding.dao.POESSoundingDAO" />
<property name="record" value="com.raytheon.uf.common.dataplugin.poessounding.POESSounding" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="poessounding"/>
<constructor-arg ref="poessoundingProperties"/>
</bean>
</beans>