aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOfir Sonsino <os0695@att.com>2017-10-04 17:53:45 +0300
committerOfir Sonsino <os0695@att.com>2017-10-04 17:53:45 +0300
commit1b796b793fd5a1187873f5a792b170dc16725761 (patch)
tree61b6b6f10d862e71512897058df12efe1b3d7a91
parent13b38dbfdcc4f16bfe9e7179940304aa3a351076 (diff)
Set IsReadOnly to false by default
Change-Id: I1435c1542a198a659a90bba9308934b6a30f94e2 Issue-ID: VID-76 Signed-off-by: Ofir Sonsino <os0695@att.com>
-rw-r--r--vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SecureServices.java3
1 files changed, 2 insertions, 1 deletions
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<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;