ea445ce07f8ec4b3d675fd82f900637b1c2d82f1
[appc.git] / appc-inbound / appc-interfaces-service / bundle / src / main / java / org / onap / appc / interfaces / service / executor / ServiceExecutor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.interfaces.service.executor;
26
27 import org.onap.appc.interfaces.service.executorImpl.ServiceExecutorImpl;
28 import org.onap.appc.interfaces.service.utils.ServiceConstants;
29 import org.slf4j.Logger;
30 import org.slf4j.LoggerFactory;
31
32 public class ServiceExecutor {
33
34     private static final Logger log = LoggerFactory.getLogger(ServiceExecutor.class);
35
36     public String execute(String action, String requestData, String requestDataType) throws Exception {
37         String response;
38         log.info("Received execute request for action : " + action + "  with Payload : " + requestData);
39         try {
40             RequestValidator.validate(action, requestData, requestData);
41             switch (action) {
42                 case ServiceConstants.REQUESTOVERLAP:
43                     response = isRequestOverLap(requestData);
44                     break;
45                 case ServiceConstants.GEDATABYMODEL:
46                     response = getDataByModel(action, requestData, requestDataType);
47                     break;
48                 default:
49                     throw new ExecutorException(" Action " + action + " not found while processing request ");
50             }
51         } catch (Exception e) {
52             log.info("Error while checking for ScopeOverlap", e);
53             throw e;
54         }
55         return response;
56     }
57
58     private String getDataByModel(String action, String requestData, String requestDataType) {
59
60         return null;
61     }
62
63     private String isRequestOverLap(String requestData) throws Exception {
64
65         ServiceExecutorImpl serviceExecutor = new ServiceExecutorImpl();
66         try {
67             return serviceExecutor.isRequestOverLap(requestData);
68         } catch (Exception e) {
69             log.error("Error while checking for request overlap", e);
70             throw e;
71         }
72     }
73 }