summaryrefslogtreecommitdiffstats
path: root/sandbox/lresende/backup/organization-das/src/main/resources/organization-spring-context.xml
blob: c814afe28b4c88abeb427425a2ebbb936f29eb80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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:sca="http://www.springframework.org/schema/sca"
       xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/sca http://www.springframework.org/schema/sca/spring-sca.xsd">

    <sca:service name="OrganizationService"
		type="organization.services.OrganizationService" target="OrganizationServiceBean"/>

    <bean id="OrganizationServiceBean" class="organization.services.OrganizationServiceImpl">
        <property name="organizationDataService" ref="OrganizationDataServiceBean"/>
    </bean>
	
    <bean id="OrganizationDataServiceBean" class="organization.das.OrganizationDataServiceImpl">
    	
    </bean>	
</beans>