<?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 hibernate mapping files -->
    <beans>
        
        <bean id="hibernateMappingFiles"
            class="org.wamblee.persistence.hibernate.HibernateMappingFiles">
            <constructor-arg>
                <list>
                    <value>Group.hbm.xml</value>
                    <value>User.hbm.xml</value>
                    <value>UserCondition.hbm.xml</value>
                    <value>PathCondition.hbm.xml</value>
                    <value>OperationCondition.hbm.xml</value>
                    <value>AuthorizationRule.hbm.xml</value> 
                    <value>AuthorizationService.hbm.xml</value>
                    
                    <value>PhotoAuthorizationRule.hbm.xml</value>
                    <value>PageAuthorizationRule.hbm.xml</value>
                </list>
            </constructor-arg>
        </bean>
        
    </beans>
    