2013-02-19 08:23:00 -06:00
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
|
|
xmlns:util="http://www.springframework.org/schema/util" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2013-05-29 14:49:43 -05:00
|
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
|
|
|
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd">
|
2013-02-19 08:23:00 -06:00
|
|
|
|
|
|
|
<util:list id="subscriptionRoutesToSchedule">
|
|
|
|
<value>OPSNET</value>
|
|
|
|
<value>SBN</value>
|
|
|
|
</util:list>
|
|
|
|
|
|
|
|
<bean id="OPSNETRetrievalPlan"
|
|
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.retrieval.RetrievalPlan">
|
2013-06-26 09:07:57 -05:00
|
|
|
<property name="network" value="OPSNET" />
|
|
|
|
<property name="map" ref="BandwidthMap" />
|
|
|
|
<property name="bandwidthDao" ref="bandwidthDao" />
|
|
|
|
<property name="bucketsDao" ref="bandwidthBucketDao" />
|
|
|
|
<property name="associator" ref="bandwidthBucketAllocationAssociator" />
|
2013-02-19 08:23:00 -06:00
|
|
|
<property name="scheduler">
|
|
|
|
<bean
|
|
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.retrieval.PriorityRetrievalScheduler" />
|
|
|
|
</property>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<!-- SBN routed subscriptions are scheduled for retrieval at the WFO,
|
|
|
|
but the actual retrieval occurs at the NCF -->
|
|
|
|
<bean id="SBNRetrievalPlan"
|
|
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.retrieval.RetrievalPlan">
|
2013-06-26 09:07:57 -05:00
|
|
|
<property name="network" value="SBN" />
|
|
|
|
<property name="map" ref="BandwidthMap" />
|
|
|
|
<property name="bandwidthDao" ref="bandwidthDao" />
|
|
|
|
<property name="bucketsDao" ref="bandwidthBucketDao" />
|
|
|
|
<property name="associator" ref="bandwidthBucketAllocationAssociator" />
|
2013-02-19 08:23:00 -06:00
|
|
|
<property name="scheduler">
|
|
|
|
<bean
|
|
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.retrieval.PriorityRetrievalScheduler" />
|
|
|
|
</property>
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
<util:map id="retrievalPlans">
|
|
|
|
<entry key="OPSNET">
|
|
|
|
<ref local="OPSNETRetrievalPlan" />
|
|
|
|
</entry>
|
|
|
|
<entry key="SBN">
|
|
|
|
<ref local="SBNRetrievalPlan" />
|
|
|
|
</entry>
|
|
|
|
</util:map>
|
|
|
|
|
|
|
|
</beans>
|