Peer review comments Change-Id: I33df9cc7e368778943e25420d18b343781304c7a Former-commit-id:fbcf271899
[formerlyc1bd170f8a
] [formerlyf123fa11f5
] [formerlyfbcf271899
[formerlyc1bd170f8a
] [formerlyf123fa11f5
] [formerly3fc811102e
[formerlyf123fa11f5
[formerly f7405c2acfef95b57b79cf6d8ac3348017e64a59]]]] Former-commit-id:3fc811102e
Former-commit-id:ce2afdf1b3
[formerlyb0c54d7c17
] [formerly ac9b1be9e56f34d03174be87fbb48c2a6a187cdc [formerly4da0648461
]] Former-commit-id: ece01cf9cf7d6b3d925c922f4d1d6fe84edf0f17 [formerly26ca1b4d72
] Former-commit-id:5ff3fe2791
43 lines
No EOL
2 KiB
XML
43 lines
No EOL
2 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
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-3.1.xsd
|
|
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.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">
|
|
<constructor-arg ref="subscriptionService" />
|
|
<constructor-arg ref="subscriptionNotificationService" />
|
|
<constructor-arg ref="bandwidthService" />
|
|
<constructor-arg ref="permissionsService" />
|
|
<constructor-arg ref="groupDefinitionService" />
|
|
<constructor-arg ref="subscriptionOverlapService" />
|
|
</bean>
|
|
|
|
<bean id="systemRuleManager"
|
|
class="com.raytheon.uf.viz.datadelivery.system.SystemRuleManager"
|
|
factory-method="getInstance">
|
|
<property name="bandwidthService" ref="bandwidthService" />
|
|
</bean>
|
|
|
|
</beans> |