From: Ofir Sonsino Date: Wed, 4 Oct 2017 14:53:45 +0000 (+0300) Subject: Set IsReadOnly to false by default X-Git-Tag: v1.1.0~22 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F39%2F77339%2F1;p=sandbox-vid.git Set IsReadOnly to false by default Change-Id: I1435c1542a198a659a90bba9308934b6a30f94e2 Issue-ID: VID-76 Signed-off-by: Ofir Sonsino --- 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 0d2c2fba..0fcd7922 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;