From: Jakub Dudycz Date: Thu, 8 Feb 2018 18:46:35 +0000 (+0100) Subject: ServiceExecutor sonar fixes X-Git-Tag: v1.3.0~297 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=de30efcf2cf03577adbd46be2eb2e074a177dfd2;p=appc.git ServiceExecutor sonar fixes Change-Id: Id169ae3943c74893d885b8be098af96e44292ce5 Issue-ID: APPC-585 Signed-off-by: Jakub Dudycz --- diff --git a/appc-inbound/appc-interfaces-service/bundle/src/main/java/org/onap/appc/interfaces/service/executor/ExecutorException.java b/appc-inbound/appc-interfaces-service/bundle/src/main/java/org/onap/appc/interfaces/service/executor/ExecutorException.java new file mode 100644 index 000000000..c20a84f06 --- /dev/null +++ b/appc-inbound/appc-interfaces-service/bundle/src/main/java/org/onap/appc/interfaces/service/executor/ExecutorException.java @@ -0,0 +1,8 @@ +package org.onap.appc.interfaces.service.executor; + +public class ExecutorException extends Exception{ + + public ExecutorException(String message) { + super(message); + } +} diff --git a/appc-inbound/appc-interfaces-service/bundle/src/main/java/org/onap/appc/interfaces/service/executor/ServiceExecutor.java b/appc-inbound/appc-interfaces-service/bundle/src/main/java/org/onap/appc/interfaces/service/executor/ServiceExecutor.java index f72157656..ea445ce07 100644 --- a/appc-inbound/appc-interfaces-service/bundle/src/main/java/org/onap/appc/interfaces/service/executor/ServiceExecutor.java +++ b/appc-inbound/appc-interfaces-service/bundle/src/main/java/org/onap/appc/interfaces/service/executor/ServiceExecutor.java @@ -24,40 +24,34 @@ package org.onap.appc.interfaces.service.executor; -import java.io.IOException; - -import org.onap.appc.interfaces.service.InterfacesServiceProviderImpl; import org.onap.appc.interfaces.service.executorImpl.ServiceExecutorImpl; import org.onap.appc.interfaces.service.utils.ServiceConstants; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import com.fasterxml.jackson.core.JsonParseException; -import com.fasterxml.jackson.databind.JsonMappingException; - public class ServiceExecutor { private static final Logger log = LoggerFactory.getLogger(ServiceExecutor.class); - public String execute(String action, String requestData, String requestDataType) throws Exception{ - String response = null; + + public String execute(String action, String requestData, String requestDataType) throws Exception { + String response; log.info("Received execute request for action : " + action + " with Payload : " + requestData); - try{ - RequestValidator.validate(action, requestData, requestData); - switch (action) { - case ServiceConstants.REQUESTOVERLAP: - response = isRequestOverLap(requestData); - break; - case ServiceConstants.GEDATABYMODEL: - response = getDataByModel(action, requestData, requestDataType); - break; - default: - throw new Exception(" Action " + action + " not found while processing request "); + try { + RequestValidator.validate(action, requestData, requestData); + switch (action) { + case ServiceConstants.REQUESTOVERLAP: + response = isRequestOverLap(requestData); + break; + case ServiceConstants.GEDATABYMODEL: + response = getDataByModel(action, requestData, requestDataType); + break; + default: + throw new ExecutorException(" Action " + action + " not found while processing request "); + } + } catch (Exception e) { + log.info("Error while checking for ScopeOverlap", e); + throw e; } - }catch(Exception e){ - log.info("Error while checking for ScopeOverlap " + e.getMessage()); - e.printStackTrace(); - throw e; - } return response; } @@ -72,7 +66,7 @@ public class ServiceExecutor { try { return serviceExecutor.isRequestOverLap(requestData); } catch (Exception e) { - e.printStackTrace(); + log.error("Error while checking for request overlap", e); throw e; } }