All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samples.crud.crud-core.3.4.source-code.applicationContext-manageable.xml Maven / Gradle / Ivy

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

<beans>

    <!-- CRUD Service Transactional Interceptor. Generated by Spring crud/applicationContext-manageable.xml.vsl -->
    <bean id="manageableServiceTransactionInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">
        <property name="transactionManager"><ref bean="transactionManager"/></property>
        <property name="transactionAttributeSource">
            <value>
                org.andromda.samples.crud.home.crud.HomeManageableService.create=PROPAGATION_REQUIRED
                org.andromda.samples.crud.home.crud.HomeManageableService.read=PROPAGATION_REQUIRED
                org.andromda.samples.crud.home.crud.HomeManageableService.readAll=PROPAGATION_REQUIRED
                org.andromda.samples.crud.home.crud.HomeManageableService.readBackingLists=PROPAGATION_REQUIRED
                org.andromda.samples.crud.home.crud.HomeManageableService.update=PROPAGATION_REQUIRED
                org.andromda.samples.crud.home.crud.HomeManageableService.delete=PROPAGATION_REQUIRED
                org.andromda.samples.crud.garden.crud.GardenManageableService.create=PROPAGATION_REQUIRED
                org.andromda.samples.crud.garden.crud.GardenManageableService.read=PROPAGATION_REQUIRED
                org.andromda.samples.crud.garden.crud.GardenManageableService.readAll=PROPAGATION_REQUIRED
                org.andromda.samples.crud.garden.crud.GardenManageableService.readBackingLists=PROPAGATION_REQUIRED
                org.andromda.samples.crud.garden.crud.GardenManageableService.update=PROPAGATION_REQUIRED
                org.andromda.samples.crud.garden.crud.GardenManageableService.delete=PROPAGATION_REQUIRED
                org.andromda.samples.crud.flower.crud.FlowerManageableService.create=PROPAGATION_REQUIRED
                org.andromda.samples.crud.flower.crud.FlowerManageableService.read=PROPAGATION_REQUIRED
                org.andromda.samples.crud.flower.crud.FlowerManageableService.readAll=PROPAGATION_REQUIRED
                org.andromda.samples.crud.flower.crud.FlowerManageableService.getPicture=PROPAGATION_REQUIRED
                org.andromda.samples.crud.flower.crud.FlowerManageableService.readBackingLists=PROPAGATION_REQUIRED
                org.andromda.samples.crud.flower.crud.FlowerManageableService.update=PROPAGATION_REQUIRED
                org.andromda.samples.crud.flower.crud.FlowerManageableService.delete=PROPAGATION_REQUIRED
                org.andromda.samples.crud.room.crud.RoomManageableService.create=PROPAGATION_REQUIRED
                org.andromda.samples.crud.room.crud.RoomManageableService.read=PROPAGATION_REQUIRED
                org.andromda.samples.crud.room.crud.RoomManageableService.readAll=PROPAGATION_REQUIRED
                org.andromda.samples.crud.room.crud.RoomManageableService.readBackingLists=PROPAGATION_REQUIRED
                org.andromda.samples.crud.room.crud.RoomManageableService.update=PROPAGATION_REQUIRED
                org.andromda.samples.crud.room.crud.RoomManageableService.delete=PROPAGATION_REQUIRED
                org.andromda.samples.crud.color.crud.ColorManageableService.create=PROPAGATION_REQUIRED
                org.andromda.samples.crud.color.crud.ColorManageableService.read=PROPAGATION_REQUIRED
                org.andromda.samples.crud.color.crud.ColorManageableService.readAll=PROPAGATION_REQUIRED
                org.andromda.samples.crud.color.crud.ColorManageableService.readBackingLists=PROPAGATION_REQUIRED
                org.andromda.samples.crud.color.crud.ColorManageableService.update=PROPAGATION_REQUIRED
                org.andromda.samples.crud.color.crud.ColorManageableService.delete=PROPAGATION_REQUIRED
            </value>
        </property>
    </bean>

     <!-- HomeManageableDao Entity Proxy -->
     <bean id="HomeManageableDao" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="HomeManageableDaoBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.home.crud.HomeManageableDao</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

    <!-- HomeManageableDao Implementation  -->
    <bean id="HomeManageableDaoBase" class="org.andromda.samples.crud.home.crud.HomeManageableDaoBase">
        <property name="sessionFactory"><ref bean="sessionFactory"/></property>
        <property name="dao"><ref bean="homeDao"/></property>
        <property name="gardensDao"><ref bean="gardenDao"/></property>
        <property name="roomsDao"><ref bean="roomDao"/></property>
    </bean>

    <!-- HomeManageableService Service Implementation  -->
    <bean id="HomeManageableServiceBase" class="org.andromda.samples.crud.home.crud.HomeManageableServiceBase">
        <property name="dao"><ref local="HomeManageableDao"/></property>
    </bean>

    <!-- HomeManageableService Service Proxy  -->
    <bean id="HomeManageableService" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="HomeManageableServiceBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.home.crud.HomeManageableService</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>manageableServiceTransactionInterceptor</value>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

     <!-- GardenManageableDao Entity Proxy -->
     <bean id="GardenManageableDao" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="GardenManageableDaoBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.garden.crud.GardenManageableDao</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

    <!-- GardenManageableDao Implementation  -->
    <bean id="GardenManageableDaoBase" class="org.andromda.samples.crud.garden.crud.GardenManageableDaoBase">
        <property name="sessionFactory"><ref bean="sessionFactory"/></property>
        <property name="dao"><ref bean="gardenDao"/></property>
        <property name="homeDao"><ref bean="homeDao"/></property>
        <property name="flowersDao"><ref bean="flowerDao"/></property>
    </bean>

    <!-- GardenManageableService Service Implementation  -->
    <bean id="GardenManageableServiceBase" class="org.andromda.samples.crud.garden.crud.GardenManageableServiceBase">
        <property name="dao"><ref local="GardenManageableDao"/></property>
    </bean>

    <!-- GardenManageableService Service Proxy  -->
    <bean id="GardenManageableService" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="GardenManageableServiceBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.garden.crud.GardenManageableService</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>manageableServiceTransactionInterceptor</value>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

     <!-- FlowerManageableDao Entity Proxy -->
     <bean id="FlowerManageableDao" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="FlowerManageableDaoBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.flower.crud.FlowerManageableDao</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

    <!-- FlowerManageableDao Implementation  -->
    <bean id="FlowerManageableDaoBase" class="org.andromda.samples.crud.flower.crud.FlowerManageableDaoBase">
        <property name="sessionFactory"><ref bean="sessionFactory"/></property>
        <property name="dao"><ref bean="flowerDao"/></property>
        <property name="gardenDao"><ref bean="gardenDao"/></property>
        <property name="colorsDao"><ref bean="colorDao"/></property>
    </bean>

    <!-- FlowerManageableService Service Implementation  -->
    <bean id="FlowerManageableServiceBase" class="org.andromda.samples.crud.flower.crud.FlowerManageableServiceBase">
        <property name="dao"><ref local="FlowerManageableDao"/></property>
    </bean>

    <!-- FlowerManageableService Service Proxy  -->
    <bean id="FlowerManageableService" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="FlowerManageableServiceBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.flower.crud.FlowerManageableService</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>manageableServiceTransactionInterceptor</value>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

     <!-- RoomManageableDao Entity Proxy -->
     <bean id="RoomManageableDao" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="RoomManageableDaoBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.room.crud.RoomManageableDao</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

    <!-- RoomManageableDao Implementation  -->
    <bean id="RoomManageableDaoBase" class="org.andromda.samples.crud.room.crud.RoomManageableDaoBase">
        <property name="sessionFactory"><ref bean="sessionFactory"/></property>
        <property name="dao"><ref bean="roomDao"/></property>
        <property name="homeDao"><ref bean="homeDao"/></property>
    </bean>

    <!-- RoomManageableService Service Implementation  -->
    <bean id="RoomManageableServiceBase" class="org.andromda.samples.crud.room.crud.RoomManageableServiceBase">
        <property name="dao"><ref local="RoomManageableDao"/></property>
    </bean>

    <!-- RoomManageableService Service Proxy  -->
    <bean id="RoomManageableService" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="RoomManageableServiceBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.room.crud.RoomManageableService</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>manageableServiceTransactionInterceptor</value>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

     <!-- ColorManageableDao Entity Proxy -->
     <bean id="ColorManageableDao" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="ColorManageableDaoBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.color.crud.ColorManageableDao</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

    <!-- ColorManageableDao Implementation  -->
    <bean id="ColorManageableDaoBase" class="org.andromda.samples.crud.color.crud.ColorManageableDaoBase">
        <property name="sessionFactory"><ref bean="sessionFactory"/></property>
        <property name="dao"><ref bean="colorDao"/></property>
        <property name="flowersDao"><ref bean="flowerDao"/></property>
    </bean>

    <!-- ColorManageableService Service Implementation  -->
    <bean id="ColorManageableServiceBase" class="org.andromda.samples.crud.color.crud.ColorManageableServiceBase">
        <property name="dao"><ref local="ColorManageableDao"/></property>
    </bean>

    <!-- ColorManageableService Service Proxy  -->
    <bean id="ColorManageableService" class="org.springframework.aop.framework.ProxyFactoryBean">
         <property name="target"><ref local="ColorManageableServiceBase"/></property>
         <property name="proxyInterfaces">
             <value>org.andromda.samples.crud.color.crud.ColorManageableService</value>
         </property>
         <property name="interceptorNames">
             <list>
                 <value>manageableServiceTransactionInterceptor</value>
                 <value>hibernateInterceptor</value>
             </list>
         </property>
     </bean>

</beans>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy