Former-commit-id:d66ad2f77b
[formerlyd0752de66c
] [formerlyd66ad2f77b
[formerlyd0752de66c
] [formerlya46e33f06e
[formerly 75e7c2a9423a7caa7f97143fa871be6d0ffe34bb]]] Former-commit-id:a46e33f06e
Former-commit-id:bbe92e6824
[formerly30d38334cc
] Former-commit-id:0c128dd8f0
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.BandwidthService" />
|
|
|
|
<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> |