blob: aacdc175d54ab4cb862f1605b778586d7c3d05ed [file] [log] [blame]
<?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:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd">
<bean id="clusterManager" class="org.eclipse.emf.objy.clustering.impl.ClusteringManagerImpl">
<property name="databaseName" value="repo3_clustering" />
<property name="mapOfClusteringStrategy">
<map>
<entry>
<key><value>*</value></key>
<ref bean="DEFAULT"/>
</entry>
<entry>
<key><value>CATEGORY</value></key>
<ref bean="CATEGORY"/>
</entry>
</map>
</property>
</bean>
<bean id="DEFAULT" class="org.eclipse.emf.objy.clustering.impl.ContainerClusteringStrategy">
<property name="maxPagesPerContainer" value="60000" />
<property name="dbName" value="repo3_defaultDatabase" />
</bean>
<bean id="CATEGORY" class="org.eclipse.emf.objy.clustering.impl.ContainerClusteringStrategy">
<property name="name" value="CATEGORY" />
<property name="maxPagesPerContainer" value="60000" />
<property name="dbName" value="repo3_CATEGORY" />
</bean>
</beans>