awips2/ncep/gov.noaa.nws.ncep.edex.plugin.ncgrib/res/spring/ncgrib-common.xml
Steve Harris 9f5469bc6e 13.5.1-4 baseline
Former-commit-id: 2487a8b435 [formerly c56be8a332] [formerly 70e4ff30a6] [formerly 2487a8b435 [formerly c56be8a332] [formerly 70e4ff30a6] [formerly e197f23ce3 [formerly 70e4ff30a6 [formerly d18b403b332dff67d1c85d4317bbceda337d1b41]]]]
Former-commit-id: e197f23ce3
Former-commit-id: 43bb696901 [formerly 640b022e84] [formerly 3369892ae14fdcfd7af44c724a72588adeb9f95b [formerly f658320357]]
Former-commit-id: 17bc09e30781d1ef9fbd82b80c952ef26b67bf7c [formerly c183e08922]
Former-commit-id: c05a6c8b50
2013-06-28 09:46:25 -04:00

38 lines
No EOL
1.9 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-3.1.xsd">
<bean id="ncgribPathProvider" class="gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribPathProvider" />
<bean id="ncgribProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" value="ncgrib" />
<property name="pluginFQN" value="gov.noaa.nws.ncep.common.dataplugin.ncgrib" />
<property name="dao" value="gov.noaa.nws.ncep.edex.plugin.ncgrib.dao.NcgribDao" />
<property name="record" value="gov.noaa.nws.ncep.common.dataplugin.ncgrib.NcgribRecord" />
<property name="initializer"
value="gov.noaa.nws.ncep.edex.plugin.ncgrib.NcgribInitializer" />
<property name="dependencyFQNs">
<list>
<value>com.raytheon.uf.common.dataplugin.level</value>
</list>
</property>
<property name="pathProvider">
<ref bean="ncgribPathProvider"/>
</property>
</bean>
<bean id="ncgribRegistered" factory-bean="pluginRegistry" factory-method="register"
depends-on="levelRegistered">
<constructor-arg value="ncgrib"/>
<constructor-arg ref="ncgribProperties"/>
</bean>
<bean id="ncgribDecoder" class="gov.noaa.nws.ncep.edex.plugin.ncgrib.NcgribDecoder"/>
<bean id="NcLatLonDao" class="gov.noaa.nws.ncep.edex.plugin.ncgrib.dao.NcLatLonDao" />
<bean id="NcMercatorDao" class="gov.noaa.nws.ncep.edex.plugin.ncgrib.dao.NcMercatorDao" />
<bean id="NcPolarStereographicDao" class="gov.noaa.nws.ncep.edex.plugin.ncgrib.dao.NcPolarStereoDao" />
<bean id="NcLambertConformalDao" class="gov.noaa.nws.ncep.edex.plugin.ncgrib.dao.NcLambertConformalDao" />
<bean id="ncgribNotifyTransform" class="gov.noaa.nws.ncep.edex.plugin.ncgrib.notify.NcgribNotifyTransform" />
<bean id="ncgridAssembler" class="gov.noaa.nws.ncep.edex.plugin.ncgrib.NcgridAssembler"/>
</beans>