awips2/ncep/gov.noaa.nws.ncep.edex.plugin.airmet/res/spring/airmet-common.xml
Matt Nash c83e5ff474 Moving 12.1.1 into ss_sync
Former-commit-id: 2a9569942c48542cf708b6c0b9189146fd954c11
2012-01-19 11:53:12 -06: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>