Amend: Split creation and edit group dialogs. Add some javadoc and remove sysouts. Add missing test data causing broken tests. Rebased. Change-Id: I00d48f2a97bf8398b74bf8ed568cb19126d2c185 Former-commit-id:b128ed3340
[formerly8473eb60fb
] [formerly4ae1a9645c
] [formerlyb128ed3340
[formerly8473eb60fb
] [formerly4ae1a9645c
] [formerly446f65776e
[formerly4ae1a9645c
[formerly 797f570e28086b43b5d851275fba457c5920f57e]]]] Former-commit-id:446f65776e
Former-commit-id:6984791be8
[formerly7bf029eb7e
] [formerly 23c340a1e9db08699dd6472e0937d44ae0e67cc5 [formerly64ececeda1
]] Former-commit-id: 4b7dc8fbd66d90306e884b8ea9c8af6f53371156 [formerly6fb6bc8f87
] Former-commit-id:f269969791
39 lines
No EOL
1.9 KiB
XML
39 lines
No EOL
1.9 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.viz.datadelivery.subscription.SendToServerSubscriptionNotificationService" />
|
|
|
|
<bean id="permissionsService"
|
|
class="com.raytheon.uf.viz.datadelivery.subscription.RequestFromServerPermissionsService" />
|
|
|
|
<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" />
|
|
</bean>
|
|
|
|
<bean id="systemRuleManager"
|
|
class="com.raytheon.uf.viz.datadelivery.system.SystemRuleManager"
|
|
factory-method="getInstance">
|
|
<property name="bandwidthService" ref="bandwidthService" />
|
|
</bean>
|
|
|
|
</beans> |