mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-21 18:09:20 +00:00
93587: Merged 5.0.N (5.0.1) to HEAD-BUG-FIX (5.1/Cloud) 93514: Merged V4.2-BUG-FIX (4.2.5) to 5.0.N (5.0.1) 93316: Merged DEV to V4.2-BUG-FIX (4.2.5) 93033 : MNT-13093 : Users cannot add Comments to any documents in Alfresco via Alfresco Mobile App. - Include subTypes of desired type to expectedTypes 93140 : MNT-13093 : Users cannot add Comments to any documents in Alfresco via Alfresco Mobile App. - TypeConstraint is changed to check for subClass on demand. Test for the fix git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@94974 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
42 lines
1.8 KiB
XML
42 lines
1.8 KiB
XML
<?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:context="http://www.springframework.org/schema/context"
|
|
xmlns:mongo="http://www.springframework.org/schema/data/mongo"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context-3.0.xsd
|
|
http://www.springframework.org/schema/data/mongo
|
|
http://www.springframework.org/schema/data/mongo/spring-mongo-1.0.xsd
|
|
http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
|
|
<bean id="httpClientProvider" class="org.alfresco.rest.api.tests.client.SharedHttpClientProvider">
|
|
<constructor-arg name="alfrescoUrl" value="http://localhost:8081/alfresco/" />
|
|
<constructor-arg name="maxNumberOfConnections" value="2" />
|
|
</bean>
|
|
|
|
<!-- Registration of test models -->
|
|
<bean id="testRemoteApiModelDictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
|
|
<property name="models">
|
|
<list>
|
|
<value>models/custom-model.xml</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
<!--
|
|
<bean id="Search" class="org.alfresco.repo.management.subsystems.SwitchableApplicationContextFactory" parent="abstractPropertyBackedBean">
|
|
<property name="autoStart">
|
|
<value>false</value>
|
|
</property>
|
|
<property name="category">
|
|
<value>Search</value>
|
|
</property>
|
|
<property name="sourceBeanName">
|
|
<value>lucene</value>
|
|
</property>
|
|
<property name="instancePath">
|
|
<list>
|
|
<value>manager</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
-->
|
|
</beans> |