Amend: Peer review comments, also fixed bug where subscriptions weren't being loaded on changing bandwidth Change-Id: I8b5a122b0434d54dcfcbff9df6283edad68d7eb1 Former-commit-id:aa7c916c05
[formerlya821cdac28
] [formerly050b38fa9a
] [formerlyaa7c916c05
[formerlya821cdac28
] [formerly050b38fa9a
] [formerly5f38365571
[formerly050b38fa9a
[formerly 4da045d4c13a7d14cdbea3269409f2020e0c78f1]]]] Former-commit-id:5f38365571
Former-commit-id:e661886f15
[formerly2756292e27
] [formerly 16859d755061ef88819854b3e926a64c2319151e [formerly6992ae7a11
]] Former-commit-id: cc6bde95b0633ccbb060512d7a72c99115c94a82 [formerly273928f386
] Former-commit-id:5f55b64857
44 lines
No EOL
2.2 KiB
XML
44 lines
No EOL
2.2 KiB
XML
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd">
|
|
|
|
<bean id="bandwidthAllocationDao"
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.hibernate.BandwidthAllocationDao">
|
|
<property name="sessionFactory" ref="metadataSessionFactory" />
|
|
</bean>
|
|
|
|
<bean id="bandwidthSubscriptionDao"
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.hibernate.BandwidthSubscriptionDao">
|
|
<property name="sessionFactory" ref="metadataSessionFactory" />
|
|
</bean>
|
|
|
|
<bean id="subscriptionRetrievalDao"
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.hibernate.SubscriptionRetrievalDao">
|
|
<property name="sessionFactory" ref="metadataSessionFactory" />
|
|
</bean>
|
|
|
|
<bean id="subscriptionRetrievalAttributesDao"
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.hibernate.SubscriptionRetrievalAttributesDao">
|
|
<property name="sessionFactory" ref="metadataSessionFactory" />
|
|
</bean>
|
|
|
|
<bean id="bandwidthDataSetUpdateDao"
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.hibernate.BandwidthDataSetUpdateDao">
|
|
<property name="sessionFactory" ref="metadataSessionFactory" />
|
|
</bean>
|
|
|
|
<bean id="hibernateBandwidthDao"
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.hibernate.HibernateBandwidthDao">
|
|
<property name="bandwidthAllocationDao" ref="bandwidthAllocationDao" />
|
|
<property name="bandwidthSubscriptionDao" ref="bandwidthSubscriptionDao" />
|
|
<property name="subscriptionRetrievalDao" ref="subscriptionRetrievalDao" />
|
|
<property name="subscriptionRetrievalAttributesDao" ref="subscriptionRetrievalAttributesDao" />
|
|
<property name="bandwidthDataSetUpdateDao" ref="bandwidthDataSetUpdateDao" />
|
|
</bean>
|
|
|
|
<!-- TODO: Switch to use database bandwidth buckets
|
|
<bean id="hibernateBandwidthBucketDao"
|
|
class="com.raytheon.uf.edex.datadelivery.bandwidth.hibernate.BandwidthBucketDao">
|
|
<property name="sessionFactory" ref="metadataSessionFactory" />
|
|
</bean> -->
|
|
</beans> |