Verifying owning entity works E2E 75/33175/1
authorOfir Sonsino <os0695@intl.att.com>
Tue, 27 Feb 2018 13:34:04 +0000 (15:34 +0200)
committerOfir Sonsino <os0695@intl.att.com>
Tue, 27 Feb 2018 13:34:04 +0000 (15:34 +0200)
Change-Id: I8669b5e28c6bea1bcacbb5fcc7101f2d7541909c
Issue-ID: VID-176
Signed-off-by: Ofir Sonsino <os0695@intl.att.com>
vid-app-common/src/main/java/org/onap/vid/asdc/rest/RestfulAsdcClient.java
vid-app-common/src/main/java/org/onap/vid/controllers/VidController.java

index 1fe9df1..1bdf953 100644 (file)
@@ -22,6 +22,7 @@ package org.onap.vid.asdc.rest;
 
 import com.fasterxml.jackson.jaxrs.json.JacksonJsonProvider;
 import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
+import org.onap.portalsdk.core.util.SystemProperties;
 import org.onap.vid.asdc.AsdcCatalogException;
 import org.onap.vid.asdc.AsdcClient;
 import org.onap.vid.asdc.beans.Artifact;
@@ -160,6 +161,7 @@ public class RestfulAsdcClient implements AsdcClient {
 
         commonHeaders = new MultivaluedHashMap<String, Object>();
         commonHeaders.put("Authorization", Collections.singletonList((Object) (auth)));
+        commonHeaders.put("X-ECOMP-InstanceID", Collections.singletonList((Object) (SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME))));
     }
 
     private Path createTmpFile(InputStream csarInputStream) throws AsdcCatalogException {
index 84ba587..da27cd9 100644 (file)
@@ -107,6 +107,7 @@ public class VidController extends RestrictedBaseController {
                        secureServices.setServices(aaiService.getServicesByDistributionStatus());
                        //Disable roles until AAF integration finishes
                        //secureServices.setReadOnly(roleProvider.userPermissionIsReadOnly(roles));
+                       secureServices.setReadOnly(false);
                        return secureServices;
                }
                catch (Exception t) {