Amend: Use isEmpty() where possible in BandwidthManager. Change-Id: I85fe54982245e088f60dd33148aed72e6abfc9ec Former-commit-id:73f884753a
[formerly1161125c84
] [formerly54c3980cba
[formerly 28c97849800c624bdaa161f05777703ee2a510ac]] Former-commit-id:54c3980cba
Former-commit-id:c0a1ae396a
34 lines
No EOL
1.5 KiB
XML
34 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
|
|
xmlns:tx="http://www.springframework.org/schema/tx"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans.xsd
|
|
http://www.springframework.org/schema/tx
|
|
http://www.springframework.org/schema/tx/spring-tx.xsd">
|
|
|
|
<bean id="metadataSessionFactory"
|
|
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
|
|
<property name="dataSource" ref="dataSource" />
|
|
<property name="packagesToScan">
|
|
<list>
|
|
<value>com.raytheon.uf.edex.datadelivery.bandwidth.dao</value>
|
|
<value>com.raytheon.uf.edex.datadelivery.retrieval.db</value>
|
|
</list>
|
|
</property>
|
|
<property name="configLocation">
|
|
<value>classpath:unit-test-hibernate.cfg.xml</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<tx:annotation-driven transaction-manager="metadataTxManager" />
|
|
|
|
<bean id="metadataTxManager"
|
|
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
|
|
<property name="sessionFactory" ref="metadataSessionFactory" />
|
|
</bean>
|
|
|
|
<!-- Register the application context with EDEXUtil -->
|
|
<bean class="com.raytheon.uf.edex.core.EDEXUtil" />
|
|
|
|
</beans> |