diff options
-rw-r--r-- | Dockerfile | 2 | ||||
-rw-r--r-- | src/main/java/org/onap/nbi/apis/servicecatalog/SdcClient.java | 8 |
2 files changed, 8 insertions, 2 deletions
@@ -22,6 +22,8 @@ ADD target/$PKG_FILENAME app.jar RUN addgroup -S appgroup RUN adduser -S appuser -G appgroup +RUN mkdir temptoscafile +RUN chown appuser:appgroup temptoscafile/ COPY src/main/resources/certificate /certs ARG CERT_PASS=changeit diff --git a/src/main/java/org/onap/nbi/apis/servicecatalog/SdcClient.java b/src/main/java/org/onap/nbi/apis/servicecatalog/SdcClient.java index 0be415c..2e6893d 100644 --- a/src/main/java/org/onap/nbi/apis/servicecatalog/SdcClient.java +++ b/src/main/java/org/onap/nbi/apis/servicecatalog/SdcClient.java @@ -92,7 +92,6 @@ public class SdcClient { String callUrl = sdcGetUrl.replace("{id}", id); UriComponentsBuilder callURLFormated = UriComponentsBuilder.fromHttpUrl(callUrl); - ResponseEntity<Object> response = callSdc(callURLFormated.build().encode().toUri()); return (LinkedHashMap) response.getBody(); @@ -130,8 +129,12 @@ public class SdcClient { UriComponentsBuilder callURI = UriComponentsBuilder.fromHttpUrl(urlBuilder.toString()); + File directory = new File("temptoscafile"); + if (! directory.exists()){ + directory.mkdir(); + } - String fileName = System.currentTimeMillis() + "tosca.csar"; + String fileName = "temptoscafile/"+System.currentTimeMillis() + "tosca.csar"; ResponseEntity<byte[]> response = callSdcWithAttachment(callURI.build().encode().toUri()); File toscaFile = new File(fileName); try { @@ -178,6 +181,7 @@ public class SdcClient { private ResponseEntity<Object> callSdc(URI callURI) { ResponseEntity<Object> response = restTemplate.exchange(callURI, HttpMethod.GET, buildRequestHeader(), Object.class); + if(LOGGER.isDebugEnabled()) { LOGGER.debug("response body : {} ",response.getBody().toString()); } |