awips2/edexOsgi/com.raytheon.uf.edex.plugin.loctables/res/spring/loctables-spring.xml
Tiffany Meyer 427960a911 Additional NDM files changes.
-Added/moved from some spi files from configured or site to base
-Removed some spi files from cave/etc/basemaps to utility tree so we could update on the EDEX side
-Had to add back in the com.raytheon.uf.edex.plugin.loctables plugin so it knew what to do with some of the files in /awips2/edex/data/ndm
-Added files from the awips-ndm svn repo to be built by the awips2-edex rpm and get installed to /awips2/edex/data/ndm so that EDEX picks up the files and updates the databases and spi files.
2021-12-03 10:52:47 -05:00

52 lines
No EOL
2.5 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.xsd">
<bean id="loctablesIngest" class="com.raytheon.uf.edex.plugin.loctables.ingest.LocationTablesIngest">
<constructor-arg ref="ndmProc" />
</bean>
<bean id="raobTableHandler" class="com.raytheon.uf.edex.plugin.loctables.util.handlers.RAOBTableHandler"/>
<bean id="maritimeTableHandler" class="com.raytheon.uf.edex.plugin.loctables.util.handlers.MaritimeTableHandler"/>
<bean id="metarTableHandler" class="com.raytheon.uf.edex.plugin.loctables.util.handlers.MetarTableHandler"/>
<bean id="pirepTableHandler" class="com.raytheon.uf.edex.plugin.loctables.util.handlers.PirepTableHandler"/>
<bean id="synopticTableHandler" class="com.raytheon.uf.edex.plugin.loctables.util.handlers.SynopticLandTableHandler"/>
<bean id="mesonetTableHandler" class="com.raytheon.uf.edex.plugin.loctables.util.handlers.MesonetTableHandler"/>
<!-- Order is specific -->
<bean factory-bean="loctablesIngest" factory-method="registerHandler">
<constructor-arg value="raobStationInfo.txt" />
<constructor-arg ref="raobTableHandler" />
</bean>
<bean factory-bean="loctablesIngest" factory-method="registerHandler">
<constructor-arg value="CMANStationInfo.txt" />
<constructor-arg ref="maritimeTableHandler" />
</bean>
<bean factory-bean="loctablesIngest" factory-method="registerHandler">
<constructor-arg value="maritimeStationInfo.txt" />
<constructor-arg ref="maritimeTableHandler" />
</bean>
<bean factory-bean="loctablesIngest" factory-method="registerHandler">
<constructor-arg value="metarStationInfo.txt" />
<constructor-arg ref="metarTableHandler" />
</bean>
<bean factory-bean="loctablesIngest" factory-method="registerHandler">
<constructor-arg value="pirepsTable.txt" />
<constructor-arg ref="pirepTableHandler" />
</bean>
<bean factory-bean="loctablesIngest" factory-method="registerHandler">
<constructor-arg value="synopticStationTable.txt" />
<constructor-arg ref="synopticTableHandler" />
</bean>
<bean factory-bean="loctablesIngest" factory-method="registerHandler">
<constructor-arg value="mesonetStationInfo.txt" />
<constructor-arg ref="mesonetTableHandler" />
</bean>
</beans>