From 774b9bb00aa4d15299fb3fd8454e5c62d2a0c3f9 Mon Sep 17 00:00:00 2001 From: Silviu Dinuta Date: Thu, 17 Nov 2016 10:45:58 +0200 Subject: [PATCH] RM-4293: review updates --- .../rm-capabilities-fileplan-context.xml | 2 ++ .../model/rma/type/FilePlanType.java | 18 ++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-fileplan-context.xml b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-fileplan-context.xml index 676aff4f5c..b7d1e33fd6 100644 --- a/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-fileplan-context.xml +++ b/rm-community/rm-community-repo/config/alfresco/module/org_alfresco_module_rm/capability/rm-capabilities-fileplan-context.xml @@ -107,6 +107,7 @@ + + \ No newline at end of file diff --git a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanType.java b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanType.java index 6d2684b0ce..94c496ac8b 100644 --- a/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanType.java +++ b/rm-community/rm-community-repo/source/java/org/alfresco/module/org_alfresco_module_rm/model/rma/type/FilePlanType.java @@ -81,10 +81,19 @@ public class FilePlanType extends BaseBehaviourBean /** file plan role service */ private FilePlanRoleService filePlanRoleService; + /** + * Unfiled Record Container Type behaviour bean + */ private UnfiledRecordContainerType unfilerRecordContainerType; + /** + * Transfer Container Type behaviour bean + */ private TransferContainerType transferContainerType; + /** + * Hold Container Type behaviour bean + */ private HoldContainerType holdContainerType; /** @@ -151,16 +160,25 @@ public class FilePlanType extends BaseBehaviourBean this.filePlanRoleService = filePlanRoleService; } + /** + * @param unfilerRecordContainerType - unfiled record container type behaviour bean + */ public void setUnfilerRecordContainerType(UnfiledRecordContainerType unfilerRecordContainerType) { this.unfilerRecordContainerType = unfilerRecordContainerType; } + /** + * @param transferContainerType - transfer container type behaviour bean + */ public void setTransferContainerType(TransferContainerType transferContainerType) { this.transferContainerType = transferContainerType; } + /** + * @param holdContainerType - hold container type behaviour bean + */ public void setHoldContainerType(HoldContainerType holdContainerType) { this.holdContainerType = holdContainerType;