From fe2f6d6cb08564d0085de7e138e32b853e102a03 Mon Sep 17 00:00:00 2001 From: cagache Date: Thu, 5 Apr 2018 13:47:25 +0300 Subject: [PATCH] RM-2053 UI tests for Manage Record Classification capability --- .../rest/rm/community/model/user/UserRoles.java | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserRoles.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserRoles.java index 99fb20e346..10d0cdbbfa 100644 --- a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserRoles.java +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/rm/community/model/user/UserRoles.java @@ -35,13 +35,12 @@ package org.alfresco.rest.rm.community.model.user; */ public enum UserRoles { - IN_PLACE_WRITERS("ExtendedWriters","In-Place Writers"), - ROLE_RM_ADMIN("Administrator","Records Management Administrator"), - ROLE_RM_MANAGER ("RecordsManager","Records Management Manager"), - ROLE_RM_POWER_USER ("PowerUser","Records Management Power User"), - ROLE_RM_SECURITY_OFFICER ("SecurityOfficer", "Records Management Security Officer"), - ROLE_RM_USER ("User", "Records Management User"); - + IN_PLACE_WRITERS("ExtendedWriters", "In-Place Writers"), + ROLE_RM_ADMIN("Administrator", "Records Management Administrator"), + ROLE_RM_MANAGER("RecordsManager", "Records Management Manager"), + ROLE_RM_POWER_USER("PowerUser", "Records Management Power User"), + ROLE_RM_SECURITY_OFFICER("SecurityOfficer", "Records Management Security Officer"), + ROLE_RM_USER("User", "Records Management User"); public final String roleId; public final String displayName;