Set IsReadOnly to false by default 37/17237/1
authorOfir Sonsino <os0695@att.com>
Wed, 4 Oct 2017 14:53:45 +0000 (17:53 +0300)
committerOfir Sonsino <os0695@att.com>
Wed, 4 Oct 2017 14:53:45 +0000 (17:53 +0300)
Change-Id: I1435c1542a198a659a90bba9308934b6a30f94e2
Issue-ID: VID-76
Signed-off-by: Ofir Sonsino <os0695@att.com>
vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SecureServices.java

index 0d2c2fb..0fcd792 100644 (file)
@@ -9,7 +9,8 @@ import java.util.List;
 public class SecureServices {
 
     private Collection<Service> services;
-    private boolean isReadOnly = true;
+    //Disable roles until AAF integration finishes
+    private boolean isReadOnly = false;
 
     public void setServices(Collection<Service> services) {
         this.services = services;