awips2/ncep/gov.noaa.nws.ncep.edex.plugin.airmet/res/spring/airmet-common.xml
Nate Jensen 7301ad5c66 Issue #181 integrating ncep edex code
Change-Id: Iaf11559e4cdb4f846d02283c5d2038474c0118e3

Former-commit-id: 6366bc35cb [formerly fe52a35f7a] [formerly 33756de9c8 [formerly 3aa13bd49e23ef963127f7efbc91054c06808f1c]]
Former-commit-id: 33756de9c8
Former-commit-id: 3b7a082f41
2012-01-24 09:59:50 -06:00

26 lines
No EOL
1.3 KiB
XML

<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>