awips2/edexOsgi/com.raytheon.uf.common.dataplugin.satellite/res/spring/satellite-dataplugin-common.xml
Ben Steffensmeier 91bbdc3337 Issue #1614 Refactor data access framework to use single request.
Change-Id: Id3ed7afcf79dfb2ddeca1d9c2b632f90cc44d798

Former-commit-id: e771076275 [formerly 1393f3e3cf] [formerly 0933a5f596 [formerly 5a9ae7df15633492b0d9fb648876cfb2bb2946b6]]
Former-commit-id: 0933a5f596
Former-commit-id: f0f3c71d50
2013-02-15 11:39:56 -06:00

17 lines
No EOL
742 B
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-2.0.xsd">
<bean id="satellitePluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="satellite" />
</bean>
<bean id="satelliteDataFactory" class="com.raytheon.uf.common.dataplugin.satellite.dataaccess.SatelliteGridFactory" />
<bean factory-bean="dataAccessRegistry" factory-method="register"
depends-on="satellitePluginName, satelliteDataFactory">
<constructor-arg ref="satellitePluginName"/>
<constructor-arg ref="satelliteDataFactory"/>
</bean>
</beans>