Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<beans xmlns="http://www.springframework.org/schema/beans"
3
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
4
	xmlns:cxf="http://cxf.apache.org/core" xmlns:jaxws="http://cxf.apache.org/jaxws"
5
	xmlns:p="http://http://www.springframework.org/schema/p"
6
	xmlns:template="http://dnetlib.eu/springbeans/template" 
7
	xmlns:t="http://dnetlib.eu/springbeans/t"
8
	xsi:schemaLocation="
9
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
10
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
11
        http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd
12
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
13
        http://dnetlib.eu/springbeans/template http://dnetlib.eu/springbeans/template.xsd"
14
	default-autowire="no">
15
	
16
	<bean id="webLayoutDao" class="gr.uoa.di.web.utils.weblayout.dao.WebInterfaceLayoutISDAO">
17
		<property name="lookUp" ref="webLayoutLookUp"/>
18
		<property name="registry" ref="webLayoutRegistry"/>
19
	</bean>
20
	
21
	<bean id="webInterfaceLayoutManager" class="gr.uoa.di.web.utils.weblayout.WebInterfaceLayoutManagerImpl" init-method="init">
22
		<property name="layoutName" value="${services.genericWeb.webLayout}"/>
23
		<property name="dao" ref="webLayoutDao"></property>
24
	</bean>
25

    
26
	<bean id="webLayout" factory-bean="webInterfaceLayoutManager" factory-method="getLayout"/>
27
	
28
</beans>
(4-4/4)