awips2/edexOsgi/com.raytheon.uf.edex.plugin.pointset/res/spring/pointset-common.xml
2022-05-05 12:34:50 -05:00

29 lines
No EOL
1.3 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.xsd">
<bean id="pointsetPathProvider" class="com.raytheon.uf.common.dataplugin.pointset.PointSetPathProvider" />
<bean id="pointsetProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="pointset" />
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.pointset" />
<property name="dao" value="com.raytheon.uf.edex.plugin.pointset.PointSetDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.pointset.PointSetRecord" />
<property name="dependencyFQNs">
<list>
<value>com.raytheon.uf.common.dataplugin.level</value>
<value>com.raytheon.uf.common.parameter</value>
</list>
</property>
<property name="pathProvider">
<ref bean="pointsetPathProvider" />
</property>
</bean>
<bean id="pointsetRegistered" factory-bean="pluginRegistry"
factory-method="register" depends-on="levelRegistered,parameterRegistered">
<constructor-arg value="pointset" />
<constructor-arg ref="pointsetProperties" />
</bean>
</beans>