awips2/edexOsgi/com.raytheon.edex.plugin.ldadprofiler/res/spring/ldadprofiler-common.xml
2017-04-21 18:33:55 -06:00

21 lines
No EOL
997 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-3.1.xsd">
<bean id="ldadprofilerPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="ldadprofiler" />
</bean>
<bean id="ldadprofilerProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="ldadprofilerPluginName" />
<property name="pluginFQN" value="com.raytheon.edex.plugin.ldadprofiler" />
<property name="dao" value="com.raytheon.edex.plugin.ldadprofiler.dao.LdadProfilerDao" />
<property name="record" value="com.raytheon.edex.plugin.ldadprofiler.common.ProfilerLdadObs" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="ldadprofiler"/>
<constructor-arg ref="ldadprofilerProperties"/>
</bean>
</beans>