Files
alfresco-community-repo/source/test-resources/virtualization-test-context.xml
Ancuta Morarasu f187db02f3 Merged HEAD (5.1) to 5.1.N (5.1.1)
119450 mcozma: Merged BRANCHES/DEV/VF_REP_INT_51 to HEAD
   ACE-4716 Can't rename a document in a virtual context from CMIS
   ACE-4752 Type virtualization method does not work
   ACE-4717 Document name is renamed when making "Check in" for a document edited in Google Docs
   ACE-4700 Can't upload to a virtual folder when filename starts with a number and includes dashes


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.1.N/root@119613 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2015-12-04 09:10:57 +00:00

41 lines
2.4 KiB
XML

<?xml version='1.0' encoding='UTF-8'?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!--import needed test contexts here -->
<!--CM Form Engine -->
<bean id="typeAndAspectsFormProcessor" class="org.alfresco.repo.virtual.TypeAndAspectsFormProcessor" parent="baseFormProcessor">
<property name="filterRegistry" ref="typeFilterRegistry" />
<property name="mimetypeService" ref="mimetypeService" />
<property name="repository" ref="repositoryHelper" />
<property name="matchPattern">
<value>typeAndAspects</value>
</property>
</bean>
<bean id="virtualizationConfigTestBootstrap" class="org.alfresco.repo.virtual.VirtualizationConfigTestBootstrap">
<property name="virtualFoldersEnabled" value="${virtual.folders.enabled}" />
<property name="systemTemplatesPath">
<bean factory-bean="config.NodeRefPathExpressionFactory" factory-method="createInstance">
<property name="path" value="${virtual.folders.config.system.templates.path}" />
</bean>
</property>
<property name="systemTemplateType" value="${virtual.folders.config.system.templates.template.type}" />
<property name="typeTemplatesPath">
<bean factory-bean="config.NodeRefPathExpressionFactory" factory-method="createInstance">
<property name="path" value="${virtual.folders.config.type.templates.path}" />
</bean>
</property>
<property name="downloadAssocaiationsFolder">
<bean factory-bean="config.NodeRefPathExpressionFactory" factory-method="createInstance">
<property name="path" value="${virtual.download.associations.folder}" />
</bean>
</property>
<property name="typeTemplatesQNameFilter" value="${virtual.folders.config.type.templates.qname.filter}" />
</bean>
<bean id="test.config.hash.store" class="org.alfresco.repo.virtual.ref.HashStoreConfiguration.HashStoreConfigurationBean">
<property name="classpathsHashes" value="/org/alfresco/repo/virtual/template->8,/org/alfresco/repo/virtual/template/testTemplate1.json->9"/>
</bean>
</beans>