From a2f5a35c06a526b05e4efd9fe275d6639bf22cd3 Mon Sep 17 00:00:00 2001 From: st782s Date: Mon, 14 Aug 2017 11:41:04 -0400 Subject: DDL updates and cleanup - remove unused javascript libraries - remove contentious icons and images - Remove constraints to support Role Centralization Issue: PORTAL-21, Portal-17 Change-Id: I347accb04343d1c866c075ee716c46fea9e0d036 Signed-off-by: st782s --- .../portalsdk/core/onboarding/rest/RestWebServiceClient.java | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ecomp-sdk/epsdk-fw/src/main/java') diff --git a/ecomp-sdk/epsdk-fw/src/main/java/org/openecomp/portalsdk/core/onboarding/rest/RestWebServiceClient.java b/ecomp-sdk/epsdk-fw/src/main/java/org/openecomp/portalsdk/core/onboarding/rest/RestWebServiceClient.java index fa7a1478..9a1ea9fb 100644 --- a/ecomp-sdk/epsdk-fw/src/main/java/org/openecomp/portalsdk/core/onboarding/rest/RestWebServiceClient.java +++ b/ecomp-sdk/epsdk-fw/src/main/java/org/openecomp/portalsdk/core/onboarding/rest/RestWebServiceClient.java @@ -361,7 +361,10 @@ public class RestWebServiceClient { con.setDoInput(true); con.setDoOutput(true); + if( content != null) + { con.getOutputStream().write(content.getBytes()); + } con.getOutputStream().flush(); con.getOutputStream().close(); @@ -456,7 +459,10 @@ public class RestWebServiceClient { con.setDoInput(true); con.setDoOutput(true); + if( content != null) + { con.getOutputStream().write(content.getBytes()); + } con.getOutputStream().flush(); con.getOutputStream().close(); -- cgit 1.2.3-korg