aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/mso/MsoUtil.java
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2018-12-31 17:21:27 +0200
committerIttay Stern <ittay.stern@att.com>2019-01-09 20:19:55 +0200
commit6ad41e3ccd398a2721f41ad61c80b7bb03f7d127 (patch)
tree3bd672dff83e3218232cd8665680416b7fc26a5d /vid-app-common/src/main/java/org/onap/vid/mso/MsoUtil.java
parent5ec29ff5e3864f1ba6ecac71f8bffbefa400cf27 (diff)
Merge from ECOMP's repository
Main Features -------------- - Async-Instantiation jobs mechanism major update; still WIP (package `org.onap.vid.job`) - New features in View/Edit: Activate fabric configuration; show related networks; soft delete - Support AAI service-tree traversal (`AAIServiceTree`) - In-memory cache for SDC models and certain A&AI queries (`CacheProviderWithLoadingCache`) - Upgrade TOSCA Parser and add parsing options; fix malformed TOSCA models - Resolve Cloud-Owner values for MSO - Pass X-ONAP headers to MSO Infrastructure -------------- - Remove codehaus' jackson mapper; use soley fasterxml 2.9.7 - Surefire invokes both TestNG and JUnit tests - Support Kotlin source files - AaiController2 which handles errors in a "Spring manner" - Inline generated-sources and remove jsonschema2pojo Quality -------- - Cumulative bug fixes (A&AI API, UI timeouts, and many more) - Many Sonar issues cleaned-up - Some unused classes removed - Minor changes in vid-automation project, allowing some API verification to run Hard Merges ------------ - HTTP Clients (MSO, A&AI, WebConfig, OutgoingRequestHeadersTest) - Moved `package org.onap.vid.controllers` to `controller`, without plural -- just to keep semantic sync with ECOMP. Reference commit in ECOMP: 3d1141625 Issue-ID: VID-378 Change-Id: I9c8d1e74caa41815891d441fc0760bb5f29c5788 Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-app-common/src/main/java/org/onap/vid/mso/MsoUtil.java')
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/mso/MsoUtil.java40
1 files changed, 16 insertions, 24 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/mso/MsoUtil.java b/vid-app-common/src/main/java/org/onap/vid/mso/MsoUtil.java
index 722a1c4cd..999188ffc 100644
--- a/vid-app-common/src/main/java/org/onap/vid/mso/MsoUtil.java
+++ b/vid-app-common/src/main/java/org/onap/vid/mso/MsoUtil.java
@@ -3,14 +3,13 @@
* VID
* ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * Modifications Copyright (C) 2018 Nokia. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
- *
+ *
* http://www.apache.org/licenses/LICENSE-2.0
- *
+ *
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -28,9 +27,6 @@ import org.apache.commons.lang3.ObjectUtils;
import org.glassfish.jersey.client.ClientResponse;
import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
-import java.text.DateFormat;
-import java.text.SimpleDateFormat;
-
import static org.onap.vid.utils.Logging.getMethodName;
/**
@@ -40,10 +36,7 @@ public class MsoUtil {
/** The logger. */
private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MsoUtil.class);
-
- /** The Constant dateFormat. */
- final static DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
-
+
/**
* Wrap response.
*
@@ -67,12 +60,13 @@ public class MsoUtil {
* @return the mso response wrapper
*/
public static MsoResponseWrapper wrapResponse (ClientResponse cres) {
- String resp_str = "";
+ String respStr = "";
+ int statuscode = 0;
if ( cres != null ) {
- resp_str = cres.readEntity(String.class);
+ respStr = cres.readEntity(String.class);
+ statuscode = cres.getStatus();
}
- int statuscode = cres.getStatus();
- MsoResponseWrapper w = MsoUtil.wrapResponse ( resp_str, statuscode );
+ MsoResponseWrapper w = MsoUtil.wrapResponse ( respStr, statuscode );
return (w);
}
@@ -83,16 +77,16 @@ public class MsoUtil {
* @return the mso response wrapper
*/
public static MsoResponseWrapper wrapResponse (RestObject<String> rs) {
- String resp_str = null;
+ String respStr = null;
int status = 0;
if ( rs != null ) {
- resp_str = rs.get() != null ? rs.get() : rs.getRaw();
+ respStr = rs.get() != null ? rs.get() : rs.getRaw();
status = rs.getStatusCode();
}
- MsoResponseWrapper w = MsoUtil.wrapResponse ( resp_str, status );
+ MsoResponseWrapper w = MsoUtil.wrapResponse ( respStr, status );
return (w);
- }
-
+ }
+
public static <T> MsoResponseWrapper wrapResponse (HttpResponse<T> rs) {
MsoResponseWrapper w = new MsoResponseWrapper();
w.setStatus (rs.getStatus());
@@ -111,19 +105,17 @@ public class MsoUtil {
* @throws JsonProcessingException the json processing exception
*/
public static <T> String convertPojoToString ( T t ) {
-
- String methodName = "convertPojoToString";
ObjectMapper mapper = new ObjectMapper();
- String r_json_str = "";
+ String rJsonStr = "";
if ( t != null ) {
try {
- r_json_str = mapper.writeValueAsString(t);
+ rJsonStr = mapper.writeValueAsString(t);
}
catch ( com.fasterxml.jackson.core.JsonProcessingException j ) {
logger.debug(EELFLoggerDelegate.debugLogger,getMethodName() + " Unable to parse object of type " + t.getClass().getName() + " as json", j);
}
}
- return (r_json_str);
+ return (rJsonStr);
}
/**