diff options
author | Ofir Sonsino <os0695@att.com> | 2017-10-04 17:53:45 +0300 |
---|---|---|
committer | Ofir Sonsino <os0695@att.com> | 2017-10-04 17:53:45 +0300 |
commit | 1b796b793fd5a1187873f5a792b170dc16725761 (patch) | |
tree | 61b6b6f10d862e71512897058df12efe1b3d7a91 /vid-app-common | |
parent | 13b38dbfdcc4f16bfe9e7179940304aa3a351076 (diff) |
Set IsReadOnly to false by default
Change-Id: I1435c1542a198a659a90bba9308934b6a30f94e2
Issue-ID: VID-76
Signed-off-by: Ofir Sonsino <os0695@att.com>
Diffstat (limited to 'vid-app-common')
-rw-r--r-- | vid-app-common/src/main/java/org/openecomp/vid/asdc/beans/SecureServices.java | 3 |
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 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<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; |