Amend: Peer review comments, also fixed bug where subscriptions weren't being loaded on changing bandwidth Change-Id: I8b5a122b0434d54dcfcbff9df6283edad68d7eb1 Former-commit-id:050b38fa9a
[formerly 4da045d4c13a7d14cdbea3269409f2020e0c78f1] Former-commit-id:5f38365571
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> |