diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/ActionsExecutionAPI.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/ActionsExecutionAPI.java index 5433c4f605..54f846958d 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/ActionsExecutionAPI.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/requests/gscore/api/ActionsExecutionAPI.java @@ -119,8 +119,8 @@ public class ActionsExecutionAPI extends RMModelRequest /** * WORM lock a node for a period of days - * * - * @param targetNode the node on which the action is executed + * + * @param targetNode the node on which the action is executed * @param retentionPeriod the retention period in days for the WORM lock * @throws Exception */ @@ -129,6 +129,6 @@ public class ActionsExecutionAPI extends RMModelRequest { return getRmRestWrapper().withCoreAPI().usingActions() .executeAction(ActionsOnRule.WORM_LOCK.getActionValue(), targetNode, - ImmutableMap.of("retentionPeriod",String.valueOf(retentionPeriod))); + ImmutableMap.of("retentionPeriod", String.valueOf(retentionPeriod))); } }