30 lines
No EOL
1.4 KiB
XML
30 lines
No EOL
1.4 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.xsd">
|
|
|
|
<bean id="warningProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
|
|
<property name="pluginName" value="warning"/>
|
|
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.warning"/>
|
|
<property name="record" value="com.raytheon.uf.common.dataplugin.warning.WarningRecord"/>
|
|
<property name="initialRetentionTime" value="144"/>
|
|
</bean>
|
|
|
|
<bean factory-bean="pluginRegistry" factory-method="register">
|
|
<constructor-arg value="warning"/>
|
|
<constructor-arg ref="warningProperties"/>
|
|
</bean>
|
|
|
|
<bean id="practiceWarningProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
|
|
<property name="pluginName" value="practicewarning"/>
|
|
<property name="pluginFQN" value="com.raytheon.uf.common.dataplugin.warning"/>
|
|
<property name="record" value="com.raytheon.uf.common.dataplugin.warning.PracticeWarningRecord"/>
|
|
<property name="initialRetentionTime" value="144"/>
|
|
</bean>
|
|
|
|
<bean factory-bean="pluginRegistry" factory-method="register">
|
|
<constructor-arg value="practicewarning"/>
|
|
<constructor-arg ref="practiceWarningProperties"/>
|
|
</bean>
|
|
|
|
</beans> |