ALF-4344: F72/73 Scheduling Service Data Model

- model for persistent action schedules
- bootstrap / patch for 'Scheduled Actions' data dictionary folder

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21809 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2010-08-16 14:37:45 +00:00
parent fdc64e923d
commit 261cb71aea
5 changed files with 71 additions and 2 deletions

View File

@@ -215,9 +215,50 @@
</properties>
</type>
<type name="act:actionSchedule">
<title>Persistent Action Schedule</title>
<parent>cm:cmobject</parent>
<properties>
<property name="act:startDate">
<type>d:datetime</type>
<mandatory>true</mandatory>
</property>
<property name="act:intervalCount">
<type>d:int</type>
<mandatory>true</mandatory>
</property>
<property name="act:intervalPeriod">
<type>d:text</type>
<mandatory>true</mandatory>
<constraints>
<constraint type="LIST">
<parameter name="caseSensitive"><value>true</value></parameter>
<parameter name="allowedValues">
<list>
<value>M</value>
<value>W</value>
<value>D</value>
<value>h</value>
<value>m</value>
</list>
</parameter>
</constraint>
</constraints>
</property>
</properties>
<associations>
<association name="act:scheduledAction">
<target>
<class>act:action</class>
<mandatory>true</mandatory>
<many>false</many>
</target>
</association>
</associations>
</type>
</types>
<aspects>
<aspect name="act:actions">