22 lines
1,022 B
XML
22 lines
1,022 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.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.common.dataplugin.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>
|