mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
- Addition of generic workflow deploy patch
- Patch for re-deploying new WCM submit process git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6015 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -154,4 +154,6 @@ patch.AVMLayeredSnapshot.result=Layered Node indirectionVersions set.
|
|||||||
|
|
||||||
patch.groupMembersAsIdentifiers.description=Reindex usr:authorityContainer members as identifiers=======
|
patch.groupMembersAsIdentifiers.description=Reindex usr:authorityContainer members as identifiers=======
|
||||||
|
|
||||||
|
patch.genericWorkflow.result.deployed=Re-deployed {0} workflows.
|
||||||
|
|
||||||
|
patch.redeploySubmitProcess.description=Re-deploy WCM Submit Process Definition.
|
@@ -798,6 +798,22 @@
|
|||||||
</property>
|
</property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
|
<bean id="patch.redeploySubmitProcess" class="org.alfresco.repo.admin.patch.impl.GenericWorkflowPatch" parent="basePatch" >
|
||||||
|
<property name="id"><value>patch.redeploySubmitProcess</value></property>
|
||||||
|
<property name="description"><value>patch.redeploySubmitProcess.description</value></property>
|
||||||
|
<property name="fixesFromSchema"><value>0</value></property>
|
||||||
|
<property name="fixesToSchema"><value>57</value></property>
|
||||||
|
<property name="targetSchema"><value>58</value></property>
|
||||||
|
<property name="workflowDefinitions">
|
||||||
|
<list>
|
||||||
|
<props>
|
||||||
|
<!-- WCM workflow definition -->
|
||||||
|
<prop key="engineId">jbpm</prop>
|
||||||
|
<prop key="location">alfresco/workflow/submit_processdefinition.xml</prop>
|
||||||
|
<prop key="mimetype">text/xml</prop>
|
||||||
|
</props>
|
||||||
|
</list>
|
||||||
|
</property>
|
||||||
|
</bean>
|
||||||
|
|
||||||
</beans>
|
</beans>
|
||||||
|
@@ -19,4 +19,4 @@ version.build=@build-number@
|
|||||||
|
|
||||||
# Schema number
|
# Schema number
|
||||||
|
|
||||||
version.schema=57
|
version.schema=58
|
||||||
|
@@ -96,4 +96,7 @@
|
|||||||
<property name="companyHomePath"><value>/${spaces.company_home.childname}</value></property>
|
<property name="companyHomePath"><value>/${spaces.company_home.childname}</value></property>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
|
<!-- Workflow Patch Deployer -->
|
||||||
|
<bean id="workflowPatchDeployer" parent="workflowDeployer" singleton="false"/>
|
||||||
|
|
||||||
</beans>
|
</beans>
|
||||||
|
@@ -0,0 +1,92 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2005-2007 Alfresco Software Limited.
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public License
|
||||||
|
* as published by the Free Software Foundation; either version 2
|
||||||
|
* of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
|
* As a special exception to the terms and conditions of version 2.0 of
|
||||||
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
||||||
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
||||||
|
* FLOSS exception. You should have recieved a copy of the text describing
|
||||||
|
* the FLOSS exception, and it is also available here:
|
||||||
|
* http://www.alfresco.com/legal/licensing"
|
||||||
|
*/
|
||||||
|
package org.alfresco.repo.admin.patch.impl;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Properties;
|
||||||
|
|
||||||
|
import org.alfresco.i18n.I18NUtil;
|
||||||
|
import org.alfresco.repo.admin.patch.AbstractPatch;
|
||||||
|
import org.alfresco.repo.workflow.WorkflowDeployer;
|
||||||
|
import org.springframework.beans.BeansException;
|
||||||
|
import org.springframework.context.ApplicationContext;
|
||||||
|
import org.springframework.context.ApplicationContextAware;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Generic patch that re-deploys a workflow definition
|
||||||
|
*
|
||||||
|
* @author David Caruana
|
||||||
|
*/
|
||||||
|
public class GenericWorkflowPatch extends AbstractPatch implements ApplicationContextAware
|
||||||
|
{
|
||||||
|
private static final String MSG_DEPLOYED = "patch.genericWorkflow.result.deployed";
|
||||||
|
|
||||||
|
private ApplicationContext applicationContext;
|
||||||
|
private List<Properties> workflowDefinitions;
|
||||||
|
|
||||||
|
|
||||||
|
/* (non-Javadoc)
|
||||||
|
* @see org.springframework.context.ApplicationContextAware#setApplicationContext(org.springframework.context.ApplicationContext)
|
||||||
|
*/
|
||||||
|
public void setApplicationContext(ApplicationContext applicationContext)
|
||||||
|
throws BeansException
|
||||||
|
{
|
||||||
|
this.applicationContext = applicationContext;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the Workflow Definitions
|
||||||
|
*
|
||||||
|
* @param workflowDefinitions
|
||||||
|
*/
|
||||||
|
public void setWorkflowDefinitions(List<Properties> workflowDefinitions)
|
||||||
|
{
|
||||||
|
this.workflowDefinitions = workflowDefinitions;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void checkProperties()
|
||||||
|
{
|
||||||
|
checkPropertyNotNull(workflowDefinitions, "workflowDefinitions");
|
||||||
|
super.checkProperties();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected String applyInternal() throws Exception
|
||||||
|
{
|
||||||
|
WorkflowDeployer deployer = (WorkflowDeployer)applicationContext.getBean("workflowPatchDeployer");
|
||||||
|
|
||||||
|
for (Properties props : workflowDefinitions)
|
||||||
|
{
|
||||||
|
props.put(WorkflowDeployer.REDEPLOY, "true");
|
||||||
|
}
|
||||||
|
deployer.setWorkflowDefinitions(workflowDefinitions);
|
||||||
|
deployer.deploy();
|
||||||
|
|
||||||
|
// done
|
||||||
|
return I18NUtil.getMessage(MSG_DEPLOYED, workflowDefinitions.size());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user