2012-01-06 08:55:05 -06:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
2013-05-23 11:12:49 -05:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-05-29 14:49:43 -05:00
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
2012-01-06 08:55:05 -06:00
|
|
|
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
|
|
|
|
<bean id="ldadPluginName" class="java.lang.String">
|
|
|
|
<constructor-arg type="java.lang.String" value="ldad" />
|
|
|
|
</bean>
|
|
|
|
<bean id="ldadProperties" class="com.raytheon.uf.common.dataplugin.PluginProperties">
|
|
|
|
<property name="pluginName" value="ldad" />
|
|
|
|
</bean>
|
|
|
|
<bean factory-bean="pluginRegistry" factory-method="register">
|
|
|
|
<constructor-arg value="ldad" />
|
|
|
|
<constructor-arg ref="ldadProperties" />
|
|
|
|
</bean>
|
|
|
|
</beans>
|