summaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/controllers
diff options
context:
space:
mode:
authorSonsino, Ofir (os0695) <os0695@intl.att.com>2018-11-01 19:22:47 +0200
committerOfir Sonsino <ofir.sonsino@intl.att.com>2018-11-05 19:00:41 +0000
commitae6315fe84629d67aff39cf5100ab81b94c781d7 (patch)
treea8f2ca584b47dfa5e420ed27976d958d77eddcbc /vid-app-common/src/main/java/org/onap/vid/controllers
parente4c1493b35c4a3f3ee2232eccdf8e254ede74a85 (diff)
Enable role management
Change-Id: I08915fffa5da50c957d2f80ce88ef279fef3a1b2 Issue-ID: VID-257 Signed-off-by: Sonsino, Ofir (os0695) <os0695@intl.att.com>
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/controllers')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/controllers/VidController.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/controllers/VidController.java b/vid-app-common/src/main/java/org/onap/vid/controllers/VidController.java
index 6d6ffb31..3a3acd8e 100644
--- a/vid-app-common/src/main/java/org/onap/vid/controllers/VidController.java
+++ b/vid-app-common/src/main/java/org/onap/vid/controllers/VidController.java
@@ -106,9 +106,7 @@ public class VidController extends RestrictedBaseController {
SecureServices secureServices = new SecureServices();
List<Role> roles = roleProvider.getUserRoles(request);
secureServices.setServices(aaiService.getServicesByDistributionStatus());
- //Disable roles until AAF integration finishes
- //secureServices.setReadOnly(roleProvider.userPermissionIsReadOnly(roles));
- secureServices.setReadOnly(false);
+ secureServices.setReadOnly(roleProvider.userPermissionIsReadOnly(roles));
return secureServices;
}
catch (Exception t) {