Former-commit-id:0be473728a
[formerly 1f109861760e5fbc9d7a13cc4f518341cbc31276] Former-commit-id:aaac0b51e5
19 lines
810 B
XML
19 lines
810 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-2.0.xsd">
|
|
|
|
<bean id="bandwidthService"
|
|
class="com.raytheon.uf.common.datadelivery.bandwidth.BandwidthService" />
|
|
|
|
<bean id="bandwidthHandler"
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.handler.GraphDataHandler">
|
|
<constructor-arg ref="bandwidthService" />
|
|
</bean>
|
|
|
|
<bean factory-bean="handlerRegistry" factory-method="register">
|
|
<constructor-arg
|
|
value="com.raytheon.uf.common.datadelivery.bandwidth.request.GraphDataRequest" />
|
|
<constructor-arg ref="bandwidthHandler" />
|
|
</bean>
|
|
|
|
</beans>
|