awips2/ncep/gov.noaa.nws.ncep.edex.plugin.solarimage/res/spring/solarimage-common.xml
Nate Jensen cf843cfa42 Issue #1989 remove unused schemas
Change-Id: Ia040164481647fc384a264cd2126b8f9438df594

Former-commit-id: 00fbfbe7e5 [formerly 740237c317] [formerly f3258e77f7] [formerly 00fbfbe7e5 [formerly 740237c317] [formerly f3258e77f7] [formerly fc691cbb2f [formerly f3258e77f7 [formerly b0ad25ccd9e20b6bf994a3a46ce38298c363adff]]]]
Former-commit-id: fc691cbb2f
Former-commit-id: fde771fa01 [formerly ab10e0072d] [formerly 6a77f3b7c59562087d1ad4760e65958bf6aabb34 [formerly 6214f529a7]]
Former-commit-id: 73458acdcd0744f3e4a6cc7ea7fac5b0d28ee6a0 [formerly 3588ed1899]
Former-commit-id: 528ab65a66
2013-05-29 16:19:28 -05:00

32 lines
No EOL
1.6 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="solarimagePluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="solarimage" />
</bean>
<bean id="solarimageProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="solarimagePluginName" />
<property name="pluginFQN" value="gov.noaa.nws.ncep.common.dataplugin.solarimage" />
<property name="dao" value="gov.noaa.nws.ncep.common.dataplugin.solarimage.dao.SolarImageDao" />
<property name="record" value="gov.noaa.nws.ncep.common.dataplugin.solarimage.SolarImageRecord" />
</bean>
<bean id="solarimageRegistered" factory-bean="pluginRegistry" factory-method="register">
<constructor-arg ref="solarimagePluginName"/>
<constructor-arg ref="solarimageProperties"/>
</bean>
<!-- Register the edex specific database tables -->
<!-- bean id="satelliteEdexDbPluginProperties" class="com.raytheon.uf.edex.database.DatabasePluginProperties">
<property name="pluginFQN" value="com.raytheon.edex.plugin.satellite" />
<property name="database" value="metadata" />
</bean>
<bean id="satelliteEdexDbRegistered" factory-bean="dbPluginRegistry" factory-method="register"
depends-on="satelliteRegistered">
<constructor-arg value="com.raytheon.edex.plugin.satellite"/>
<constructor-arg ref="satelliteEdexDbPluginProperties"/>
</bean -->
</beans>