mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -589,6 +589,11 @@
|
||||
<prop key="path">/app:company_home/app:dictionary/app:transfers/app:transfer_groups/cm:default/rule:ruleFolder</prop>
|
||||
<prop key="location">alfresco/bootstrap/transferTargetRule.xml</prop>
|
||||
</props>
|
||||
|
||||
<props>
|
||||
<prop key="path">/${spaces.company_home.childname}/${spaces.dictionary.childname}</prop>
|
||||
<prop key="location">alfresco/bootstrap/scheduledActionsFolder.xml</prop>
|
||||
</props>
|
||||
|
||||
</list>
|
||||
</property>
|
||||
|
@@ -365,3 +365,5 @@ patch.migrateAttrDelete.result=Old attributes were deleted (if any)
|
||||
patch.transfer.targetrulefolder.description=Creates the transfer target rule folder for the default transfer group.
|
||||
|
||||
patch.transfer.targetrule.description=Creates the transfer target rule for the default transfer group.
|
||||
|
||||
patch.actions.scheduledfolder.description=Creates the scheduled actions folder in the Data Dictionary.
|
||||
|
@@ -2409,4 +2409,25 @@
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
<bean id="patch.actions.scheduledfolder" class="org.alfresco.repo.admin.patch.impl.GenericBootstrapPatch" parent="basePatch" >
|
||||
<property name="id"><value>patch.actions.scheduledfolder</value></property>
|
||||
<property name="description"><value>patch.actions.scheduledfolder.description</value></property>
|
||||
<property name="fixesFromSchema"><value>0</value></property>
|
||||
<property name="fixesToSchema"><value>4109</value></property>
|
||||
<property name="targetSchema"><value>4110</value></property>
|
||||
<!-- bootstrap view -->
|
||||
<property name="importerBootstrap">
|
||||
<ref bean="spacesBootstrap" />
|
||||
</property>
|
||||
<property name="checkPath">
|
||||
<value>/app:company_home/app:dictionary/cm:Scheduled_x0020_Actions</value>
|
||||
</property>
|
||||
<property name="bootstrapView">
|
||||
<props>
|
||||
<prop key="path">/app:company_home/app:dictionary</prop>
|
||||
<prop key="location">alfresco/bootstrap/scheduledActionsFolder.xml</prop>
|
||||
</props>
|
||||
</property>
|
||||
</bean>
|
||||
|
||||
</beans>
|
||||
|
@@ -19,4 +19,4 @@ version.build=@build-number@
|
||||
|
||||
# Schema number
|
||||
|
||||
version.schema=4109
|
||||
version.schema=4110
|
||||
|
@@ -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">
|
||||
|
Reference in New Issue
Block a user