awips2/ncep/gov.noaa.nws.ncep.edex.plugin.airmet/res/spring/airmet-common.xml
Steve Harris 8485b90ff8 12.4.1-10 baseline
Former-commit-id: bf53d06834caa780226121334ac1bcf0534c3f16
2012-05-01 18:06:13 -05:00

26 lines
No EOL
1.3 KiB
XML
Executable file

<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core"
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-2.0.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="airmetPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="airmet" />
</bean>
<bean id="airmetProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="airmetPluginName" />
<property name="pluginFQN" value="gov.noaa.nws.ncep.common.dataplugin.airmet" />
<property name="dao" value="gov.noaa.nws.ncep.common.dataplugin.airmet.dao.AirmetDao" />
<property name="record"
value="gov.noaa.nws.ncep.common.dataplugin.airmet.AirmetRecord" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg ref="airmetPluginName"/>
<constructor-arg ref="airmetProperties"/>
</bean>
</beans>