A records management administrator can select aspects and types relevant to RM when defining rules with aspect or type related conditions 

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@47244 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2013-02-27 17:25:01 +00:00
parent a926a9fc75
commit 5c5259d1de
8 changed files with 508 additions and 4 deletions

View File

@@ -504,18 +504,32 @@
</bean>
<!-- Abstract parent bean for the RM and DM action definition beans -->
<bean id="abstractActionDefinitionsGet" parent="abstractRuleWebScript" abstract="true" />
<bean id="abstractActionDefinitionsGet"
parent="abstractRuleWebScript"
abstract="true" />
<!-- REST impl for GET Action Defitions for RM -->
<bean id="webscript.org.alfresco.repository.rule.rm-actiondefinitions.get"
class="org.alfresco.repo.web.scripts.rule.RmActionDefinitionsGet"
parent="abstractActionDefinitionsGet">
</bean>
parent="abstractActionDefinitionsGet" />
<!-- REST impl for GET Action Defitions for DM -->
<bean id="webscript.org.alfresco.repository.rule.dm-actiondefinitions.get"
class="org.alfresco.repo.web.scripts.rule.DmActionDefinitionsGet"
parent="abstractActionDefinitionsGet">
parent="abstractActionDefinitionsGet" />
<!-- REST impl for GET Class Definitions for RM/DM -->
<bean id="webscript.org.alfresco.repository.dictionary.rm-classes.get"
class="org.alfresco.repo.web.scripts.dictionary.RmClassesGet"
parent="webscript.dictionary">
<property name="siteService" ref="SiteService" />
</bean>
<!-- REST impl for GET Property Definitions for RM/DM -->
<bean id="webscript.org.alfresco.repository.dictionary.rm-properties.get"
class="org.alfresco.repo.web.scripts.dictionary.RmPropertiesGet"
parent="webscript.dictionary">
<property name="siteService" ref="SiteService" />
</bean>
</beans>