Files
alfresco-community-repo/config/alfresco/workflow/invitation-nominated-workflow-model.xml
Kevin Roast 9c23ced4aa Merged V3.2E to HEAD
17635: Complete fix for ETHREEOH-2879 - user with missing first/last name able to use Discussions, Blogs, Links etc. in Share.
   17637: Fix regression from r17601: Favourite sites in header menu.
   17638: Fix ETHREEOH-3610 - upgrade Enterprise 2.x -> 3.2 (personUsagePatch)
   17641: ETHREEOH-3612 Security Issue : DeploymentTarget uses String to represent passwords
   17642: Fix for ETHREEOH-3482 - Impossible to delete content from its details page.
          - regression due to the "AbortProcessingException" changes added a while back.
   17660: Minor functional fixes for mobile app and cleanup
   17663: Fixed ETHREEOH-3664 "'My Tasks' dashlet could not load task list if a user was invited to a private site"
            - When webscript accessed a private site undefined was returned so the title and description couldn't be displayed, now the values are store on the invite task instead.
   17665: Fix up compile errors from r17663 - also clean up old code to coding standards in related invite classes.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18162 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2010-01-20 10:51:08 +00:00

106 lines
3.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- Nominated Invitation Workflow Model -->
<model name="inwf:invite-workflow-model" xmlns="http://www.alfresco.org/model/dictionary/1.0">
<imports>
<import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d" />
<import uri="http://www.alfresco.org/model/bpm/1.0" prefix="bpm" />
<import uri="http://www.alfresco.org/model/workflow/1.0" prefix="wf" />
</imports>
<namespaces>
<namespace uri="http://www.alfresco.org/model/workflow/invite/nominated/1.0" prefix="inwf" />
</namespaces>
<types>
<!-- Custom Tasks -->
<type name="inwf:inviteToSiteTask">
<parent>bpm:startTask</parent>
<properties>
<property name="inwf:serverPath">
<type>d:text</type>
</property>
<property name="inwf:acceptUrl">
<type>d:text</type>
</property>
<property name="inwf:rejectUrl">
<type>d:text</type>
</property>
<property name="inwf:inviteTicket">
<type>d:text</type>
</property>
<property name="inwf:inviteeGenPassword">
<type>d:text</type>
</property>
</properties>
<mandatory-aspects>
<aspect>bpm:assignee</aspect>
<aspect>inwf:nominatedInvitationStats</aspect>
</mandatory-aspects>
</type>
<type name="inwf:invitePendingTask">
<parent>bpm:workflowTask</parent>
<mandatory-aspects>
<aspect>inwf:nominatedInvitationStats</aspect>
</mandatory-aspects>
</type>
<type name="inwf:acceptInviteTask">
<parent>bpm:workflowTask</parent>
<mandatory-aspects>
<aspect>inwf:nominatedInvitationStats</aspect>
</mandatory-aspects>
</type>
<type name="inwf:rejectInviteTask">
<parent>bpm:workflowTask</parent>
<mandatory-aspects>
<aspect>inwf:nominatedInvitationStats</aspect>
</mandatory-aspects>
</type>
</types>
<aspects>
<aspect name="inwf:nominatedInvitationStats">
<properties>
<property name="inwf:resourceType">
<type>d:text</type>
</property>
<property name="inwf:resourceName">
<type>d:text</type>
</property>
<property name="inwf:resourceTitle">
<type>d:text</type>
</property>
<property name="inwf:resourceDescription">
<type>d:text</type>
</property>
<property name="inwf:inviteeRole">
<type>d:text</type>
</property>
<property name="inwf:inviterUserName">
<type>d:text</type>
</property>
<property name="inwf:inviteeUserName">
<type>d:text</type>
</property>
<property name="inwf:inviteeEmail">
<type>d:text</type>
</property>
<property name="inwf:inviteeFirstName">
<type>d:text</type>
</property>
<property name="inwf:inviteeLastName">
<type>d:text</type>
</property>
</properties>
</aspect>
</aspects>
</model>