Amend: Use isEmpty() where possible in BandwidthManager. Change-Id: I85fe54982245e088f60dd33148aed72e6abfc9ec Former-commit-id:73f884753a
[formerly1161125c84
] [formerly73f884753a
[formerly1161125c84
] [formerly54c3980cba
[formerly 28c97849800c624bdaa161f05777703ee2a510ac]]] Former-commit-id:54c3980cba
Former-commit-id:67d6a4ac99
[formerlyc0a1ae396a
] Former-commit-id:5da3043a97
43 lines
No EOL
2.1 KiB
XML
43 lines
No EOL
2.1 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:amq="http://activemq.apache.org/schema/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
|
|
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
|
|
|
|
<bean id="bandwidthService"
|
|
class="com.raytheon.uf.common.datadelivery.bandwidth.WfoBandwidthService" />
|
|
|
|
<bean id="subscriptionNotificationService"
|
|
class="com.raytheon.uf.common.datadelivery.service.SendToServerSubscriptionNotificationService" />
|
|
|
|
<bean id="permissionsService"
|
|
class="com.raytheon.uf.viz.datadelivery.subscription.RequestFromServerPermissionsService" />
|
|
|
|
<bean id="groupDefinitionService"
|
|
class="com.raytheon.uf.common.datadelivery.service.GroupDefinitionService" />
|
|
|
|
<bean id="subscriptionService"
|
|
class="com.raytheon.uf.viz.datadelivery.subscription.SubscriptionService"
|
|
factory-method="newInstance">
|
|
<constructor-arg ref="subscriptionNotificationService" />
|
|
<constructor-arg ref="bandwidthService" />
|
|
<constructor-arg ref="permissionsService" />
|
|
</bean>
|
|
|
|
<bean name="dataDeliveryServices"
|
|
class="com.raytheon.uf.viz.datadelivery.services.DataDeliveryServices"
|
|
factory-method="getInstance">
|
|
<property name="subscriptionService" ref="subscriptionService" />
|
|
<property name="subscriptionNotificationService" ref="subscriptionNotificationService" />
|
|
<property name="bandwidthService" ref="bandwidthService" />
|
|
<property name="permissionsService" ref="permissionsService" />
|
|
<property name="groupDefinitionService" ref="groupDefinitionService" />
|
|
</bean>
|
|
|
|
<bean id="systemRuleManager"
|
|
class="com.raytheon.uf.viz.datadelivery.system.SystemRuleManager"
|
|
factory-method="getInstance">
|
|
<property name="bandwidthService" ref="bandwidthService" />
|
|
</bean>
|
|
|
|
</beans> |