2017-04-21 18:33:55 -06:00
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2018-07-13 14:51:54 -06:00
|
|
|
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">
|
2017-04-21 18:33:55 -06:00
|
|
|
|
|
|
|
<!-- pluginFQN etc not set so as to not load hibernate objects into metadata -->
|
2018-07-13 14:51:54 -06:00
|
|
|
<bean id="shefProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
|
|
|
|
<property name="pluginName" value="shef" />
|
|
|
|
<property name="dao" value="com.raytheon.edex.plugin.shef.dao.ShefDao" />
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<bean factory-bean="pluginRegistry" factory-method="register">
|
|
|
|
<constructor-arg value="shef"/>
|
|
|
|
<constructor-arg ref="shefProperties"/>
|
|
|
|
</bean>
|
2017-04-21 18:33:55 -06:00
|
|
|
|
|
|
|
</beans>
|