source: oceandb/webapproot/WEB-INF/project-managers.xml @ 48

Last change on this file since 48 was 48, checked in by jazz, 15 years ago
  • Basic Layout of OID
File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2<beans xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans">
3    <bean scope="singleton" parent="serviceManagerBase" class="com.wavemaker.runtime.service.ServiceManager" id="serviceManager">
4        <property name="services">
5            <list merge="true">
6                <value>runtimeService</value>
7            </list>
8        </property>
9    </bean>
10    <bean scope="singleton" parent="typeManagerBase" class="com.wavemaker.runtime.service.TypeManager" id="typeManager">
11        <property name="types">
12            <map merge="true">
13                <entry key="runtimeService">
14                    <list>
15                        <value>com.wavemaker.runtime.service.PagingOptions</value>
16                        <value>com.wavemaker.runtime.service.PropertyOptions</value>
17                    </list>
18                </entry>
19            </map>
20        </property>
21    </bean>
22</beans>
Note: See TracBrowser for help on using the repository browser.