mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
RM-4293: review updates
This commit is contained in:
@@ -107,6 +107,7 @@
|
|||||||
<entry key="capabilityCondition.filling" value="true"/>
|
<entry key="capabilityCondition.filling" value="true"/>
|
||||||
</map>
|
</map>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="private" value="true"/>
|
||||||
</bean>
|
</bean>
|
||||||
|
|
||||||
<bean id="rmDeleteHoldContainerCapability"
|
<bean id="rmDeleteHoldContainerCapability"
|
||||||
@@ -122,5 +123,6 @@
|
|||||||
<entry key="capabilityCondition.filling" value="true"/>
|
<entry key="capabilityCondition.filling" value="true"/>
|
||||||
</map>
|
</map>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="private" value="true"/>
|
||||||
</bean>
|
</bean>
|
||||||
</beans>
|
</beans>
|
@@ -81,10 +81,19 @@ public class FilePlanType extends BaseBehaviourBean
|
|||||||
/** file plan role service */
|
/** file plan role service */
|
||||||
private FilePlanRoleService filePlanRoleService;
|
private FilePlanRoleService filePlanRoleService;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unfiled Record Container Type behaviour bean
|
||||||
|
*/
|
||||||
private UnfiledRecordContainerType unfilerRecordContainerType;
|
private UnfiledRecordContainerType unfilerRecordContainerType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transfer Container Type behaviour bean
|
||||||
|
*/
|
||||||
private TransferContainerType transferContainerType;
|
private TransferContainerType transferContainerType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hold Container Type behaviour bean
|
||||||
|
*/
|
||||||
private HoldContainerType holdContainerType;
|
private HoldContainerType holdContainerType;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -151,16 +160,25 @@ public class FilePlanType extends BaseBehaviourBean
|
|||||||
this.filePlanRoleService = filePlanRoleService;
|
this.filePlanRoleService = filePlanRoleService;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param unfilerRecordContainerType - unfiled record container type behaviour bean
|
||||||
|
*/
|
||||||
public void setUnfilerRecordContainerType(UnfiledRecordContainerType unfilerRecordContainerType)
|
public void setUnfilerRecordContainerType(UnfiledRecordContainerType unfilerRecordContainerType)
|
||||||
{
|
{
|
||||||
this.unfilerRecordContainerType = unfilerRecordContainerType;
|
this.unfilerRecordContainerType = unfilerRecordContainerType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param transferContainerType - transfer container type behaviour bean
|
||||||
|
*/
|
||||||
public void setTransferContainerType(TransferContainerType transferContainerType)
|
public void setTransferContainerType(TransferContainerType transferContainerType)
|
||||||
{
|
{
|
||||||
this.transferContainerType = transferContainerType;
|
this.transferContainerType = transferContainerType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param holdContainerType - hold container type behaviour bean
|
||||||
|
*/
|
||||||
public void setHoldContainerType(HoldContainerType holdContainerType)
|
public void setHoldContainerType(HoldContainerType holdContainerType)
|
||||||
{
|
{
|
||||||
this.holdContainerType = holdContainerType;
|
this.holdContainerType = holdContainerType;
|
||||||
|
Reference in New Issue
Block a user