mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
MOB-124 First cut of invitation service First cut group site membership git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13378 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
<!--
|
|
Remote API Bootstrap Extension Sequence. This file specifies the
|
|
initialisation (and order of initialisation) to perform during Repository
|
|
startup for beans in the Remote API project.
|
|
-->
|
|
<beans>
|
|
<bean id="remote-api.workflowBootstrap" parent="workflowDeployer">
|
|
<property name="workflowDefinitions">
|
|
<list>
|
|
<!-- Remote API invite workflow definition -->
|
|
<props>
|
|
<prop key="engineId">jbpm</prop>
|
|
<prop key="location">alfresco/workflow/invite_processdefinition.xml</prop>
|
|
<prop key="mimetype">text/xml</prop>
|
|
<prop key="redeploy">false</prop>
|
|
</props>
|
|
</list>
|
|
</property>
|
|
<property name="models">
|
|
<list>
|
|
<!-- Remote API invite workflow Model -->
|
|
<value>alfresco/workflow/invite-workflow-model.xml</value>
|
|
</list>
|
|
</property>
|
|
<property name="labels">
|
|
<list>
|
|
<!-- Remote API invite workflow Model -->
|
|
<value>alfresco/workflow/invite-workflow-messages</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
</beans> |