awips2/edexOsgi/com.raytheon.uf.edex.plugin.loctables/res/spring/loctables-spring.xml

52 lines
2.5 KiB
XML
Raw Normal View History

2022-05-05 12:34:50 -05:00
<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>