awips2/edexOsgi/com.raytheon.uf.edex.plugin.madis.ogc/res/spring/madis-ogc.xml
Dave Hladky 37062aac21 Issue #2097 Initial update for OGC services
Change-Id: I1bc8fc8a4c125bc79057c4af929c0495f0e5eb99

Former-commit-id: 83dba7b655 [formerly 875006e24de0755cdd0dedc7b0afcf221bcbad49]
Former-commit-id: bef4b3cdbd
2013-08-28 08:24:45 -05:00

33 lines
No EOL
1.4 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://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="madisLayerCollector" class="com.raytheon.uf.edex.plugin.madis.ogc.MadisLayerCollector" >
<constructor-arg ref="layerStore" />
</bean>
<bean id="madisWfsSource" class="com.raytheon.uf.edex.plugin.madis.ogc.MadisWfsSource">
<constructor-arg ref="madisProperties" />
<constructor-arg ref="madisTranslator" />
<constructor-arg ref="madisLayerCollector"/>
</bean>
<bean id="madisTranslator" class="com.raytheon.uf.edex.plugin.madis.ogc.MadisTranslator">
</bean>
<bean factory-bean="wfsRegistry" factory-method="register">
<constructor-arg ref="madisWfsSource" />
</bean>
<bean id="madisWmsSource" class="com.raytheon.uf.edex.plugin.madis.ogc.MadisWmsSource" >
<constructor-arg ref="madisProperties" />
<constructor-arg ref="madisLayerTransformer"/>
</bean>
<bean id="madisLayerTransformer" class="com.raytheon.uf.edex.ogc.common.db.LayerTransformer" >
<constructor-arg value="madis" />
<constructor-arg ref="madisLayerCollector" />
</bean>
</beans>