summaryrefslogtreecommitdiffstats
path: root/sandbox/lresende/backup/organization-das/src/main/resources/organization-spring-context.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/lresende/backup/organization-das/src/main/resources/organization-spring-context.xml')
-rw-r--r--sandbox/lresende/backup/organization-das/src/main/resources/organization-spring-context.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/sandbox/lresende/backup/organization-das/src/main/resources/organization-spring-context.xml b/sandbox/lresende/backup/organization-das/src/main/resources/organization-spring-context.xml
new file mode 100644
index 0000000000..c814afe28b
--- /dev/null
+++ b/sandbox/lresende/backup/organization-das/src/main/resources/organization-spring-context.xml
@@ -0,0 +1,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>