Ignore:
Timestamp:
Jan 21, 2009, 1:03:14 PM (15 years ago)
Author:
jazz
Message:
  • Basic Layout of OID
File:
1 edited

Legend:

Unmodified
Added
Removed
  • oceandb/webapproot/WEB-INF/project-managers.xml

    r47 r48  
    1 <?xml version="1.0" encoding="UTF-8"?>
    2 
    3 <!--
    4 Server-side manager bean definitions.  These are only to be used at runtime.
    5 -->
    6 <beans xmlns="http://www.springframework.org/schema/beans"
    7         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    8         xmlns:aop="http://www.springframework.org/schema/aop"
    9         xsi:schemaLocation="http://www.springframework.org/schema/beans
    10                 http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
    11                 http://www.springframework.org/schema/aop
    12                 http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
    13 
    14     <!-- extend beans to have the proper names; add in server-specific information -->
    15     <bean id="serviceManager"
    16             class="com.wavemaker.runtime.service.ServiceManager"
    17             scope="singleton"
    18             lazy-init="true"
    19             parent="serviceManagerBase">
     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">
    204        <property name="services">
    215            <list merge="true">
     6                <value>runtimeService</value>
    227            </list>
    238        </property>
    249    </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>
    2522</beans>
Note: See TracChangeset for help on using the changeset viewer.