<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">

<!-- This is the Spring configuration to define the database-related stuff for the
    all persistence tests.  -->
    <beans>
        
        <!--  database configuration from property file -->
        <bean id="dataSource" 
            class="org.springframework.jndi.JndiObjectFactoryBean">
            <property name="jndiName" value="${org.wamblee.photos.datasource}"/>
        </bean>
    </beans>
    