Amend: Use isEmpty() where possible in BandwidthManager. Change-Id: I85fe54982245e088f60dd33148aed72e6abfc9ec Former-commit-id:73f884753a
[formerly1161125c84
] [formerly54c3980cba
[formerly 28c97849800c624bdaa161f05777703ee2a510ac]] Former-commit-id:54c3980cba
Former-commit-id:c0a1ae396a
19 lines
813 B
XML
19 lines
813 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.WfoBandwidthService" />
|
|
|
|
<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>
|