awips2/edexOsgi/com.raytheon.uf.edex.plugin.redbook/res/spring/redbook-common.xml
Mike Duff c2779cf796 Issue #2907 - Change directory name to match project name.
Change-Id: I9f3cd8bc28047b1da295dcc6da5d91a2d3583848

Former-commit-id: 903d10096c [formerly b8b3b9eb8e] [formerly 903d10096c [formerly b8b3b9eb8e] [formerly 309bb97356 [formerly db7f966c43292a321793655fe283cc3feacfd9f1]]]
Former-commit-id: 309bb97356
Former-commit-id: ce5363105b [formerly e03d319eaf]
Former-commit-id: 7561832a2a
2014-04-15 12:14:58 -05:00

21 lines
No EOL
952 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-3.1.xsd">
<bean id="redbookPluginName" class="java.lang.String">
<constructor-arg type="java.lang.String" value="redbook" />
</bean>
<bean id="redbookProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
<property name="pluginName" ref="redbookPluginName" />
<property name="pluginFQN" value="com.raytheon.uf.edex.plugin.redbook" />
<property name="dao" value="com.raytheon.uf.edex.plugin.redbook.dao.RedbookDao" />
<property name="record" value="com.raytheon.uf.common.dataplugin.redbook.RedbookRecord" />
</bean>
<bean factory-bean="pluginRegistry" factory-method="register">
<constructor-arg value="redbook"/>
<constructor-arg ref="redbookProperties"/>
</bean>
</beans>