From 1b796b793fd5a1187873f5a792b170dc16725761 Mon Sep 17 00:00:00 2001 From: Ofir Sonsino Date: Wed, 4 Oct 2017 17:53:45 +0300 Subject: Set IsReadOnly to false by default Change-Id: I1435c1542a198a659a90bba9308934b6a30f94e2 Issue-ID: VID-76 Signed-off-by: Ofir Sonsino --- .../src/main/java/org/openecomp/vid/asdc/beans/SecureServices.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SecureServices.java b/vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SecureServices.java index 0d2c2fba2..0fcd79223 100644 --- a/vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SecureServices.java +++ b/vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SecureServices.java @@ -9,7 +9,8 @@ import java.util.List; public class SecureServices { private Collection services; - private boolean isReadOnly = true; + //Disable roles until AAF integration finishes + private boolean isReadOnly = false; public void setServices(Collection services) { this.services = services; -- cgit 1.2.3-korg