mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
First cut of content expiration support
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5674 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
29
config/alfresco/workflow/changerequest_processdefinition.xml
Normal file
29
config/alfresco/workflow/changerequest_processdefinition.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<process-definition xmlns="urn:jbpm.org:jpdl-3.1" name="wcmwf:changerequest">
|
||||
|
||||
<swimlane name="initiator" />
|
||||
|
||||
<start-state name="start">
|
||||
<task name="wcmwf:submitChangeRequestTask" swimlane="initiator" />
|
||||
<transition name="" to="changeRequest" />
|
||||
</start-state>
|
||||
|
||||
<swimlane name="assignee">
|
||||
<assignment class="org.alfresco.repo.workflow.jbpm.AlfrescoAssignment">
|
||||
<actor>#{bpm_assignee}</actor>
|
||||
</assignment>
|
||||
</swimlane>
|
||||
|
||||
<task-node name="changeRequest">
|
||||
<task name="wcmwf:changeRequestTask" swimlane="assignee" />
|
||||
<transition name="" to="end" />
|
||||
</task-node>
|
||||
|
||||
<end-state name="end" />
|
||||
|
||||
<event type="process-end">
|
||||
<action class="org.alfresco.repo.avm.wf.AVMRemoveWFStoreHandler"/>
|
||||
</event>
|
||||
|
||||
</process-definition>
|
@@ -38,3 +38,15 @@ wcmwf_workflowmodel.property.wcmwf_reviewerCnt.title=Total Reviewed
|
||||
wcmwf_workflowmodel.property.wcmwf_reviewerCnt.description=Count of people who reviewed
|
||||
wcmwf_workflowmodel.property.wcmwf_approveCnt.title=Total Approved
|
||||
wcmwf_workflowmodel.property.wcmwf_approveCnt.description=Count of people who approved
|
||||
|
||||
# Change Request Workflow
|
||||
|
||||
wcmwf_changerequest.workflow.title=Change Request
|
||||
wcmwf_changerequest.workflow.description=Assign an asset for modification
|
||||
|
||||
# Change Request Task Definitions
|
||||
|
||||
wcmwf_workflowmodel.type.wcmwf_submitChangeRequestTask.title=Submit Change Request
|
||||
wcmwf_workflowmodel.type.wcmwf_submitChangeRequestTask.description=Submits a change request for one or more items
|
||||
wcmwf_workflowmodel.type.wcmwf_changeRequestTask.title=Change Request
|
||||
wcmwf_workflowmodel.type.wcmwf_changeRequestTask.description=Change Request
|
||||
|
@@ -115,6 +115,32 @@
|
||||
<mandatory-aspects>
|
||||
<aspect>bpm:assignee</aspect>
|
||||
</mandatory-aspects>
|
||||
</type>
|
||||
|
||||
<!-- -->
|
||||
<!-- Change Request Tasks -->
|
||||
<!-- -->
|
||||
|
||||
<type name="wcmwf:submitChangeRequestTask">
|
||||
<parent>wcmwf:startTask</parent>
|
||||
<mandatory-aspects>
|
||||
<aspect>bpm:assignee</aspect>
|
||||
</mandatory-aspects>
|
||||
</type>
|
||||
|
||||
<type name="wcmwf:changeRequestTask">
|
||||
<parent>bpm:workflowTask</parent>
|
||||
<overrides>
|
||||
<property name="bpm:packageActionGroup">
|
||||
<default></default>
|
||||
</property>
|
||||
<property name="bpm:packageItemActionGroup">
|
||||
<default>edit_wcm_package_item_actions</default>
|
||||
</property>
|
||||
</overrides>
|
||||
<mandatory-aspects>
|
||||
<aspect>bpm:assignee</aspect>
|
||||
</mandatory-aspects>
|
||||
</type>
|
||||
|
||||
</types>
|
||||
|
Reference in New Issue
Block a user