Skip to main content
summaryrefslogblamecommitdiffstats
blob: bded14d57efdc56e356a683d2e298249886f1fec (plain) (tree)



































                                                                                                            
<?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="repo1_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="repo1_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="repo1_CATEGORY" />
</bean>	

</beans>

Back to the top