Fixed Mock code issue for Reboot action
[appc.git] / appc-provider / appc-provider-bundle / src / main / java / org / onap / appc / provider / lcm / mock / MockRequestExecutor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 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  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.provider.lcm.mock;
25
26 import com.att.eelf.configuration.EELFLogger;
27 import com.att.eelf.configuration.EELFManager;
28 import org.onap.appc.domainmodel.lcm.VNFOperation;
29 import org.onap.appc.provider.lcm.mock.query.MockQueryHelper;
30 import org.onap.appc.requesthandler.objects.RequestHandlerInput;
31 import org.onap.appc.requesthandler.objects.RequestHandlerOutput;
32
33 /**
34  * Mock Request executor which mocks backend implementation
35  * for the set of LCM commands which do not have backend support.
36  */
37 public class MockRequestExecutor {
38
39     private final EELFLogger logger = EELFManager.getInstance().getLogger(MockRequestExecutor.class);
40
41     /**
42      * Execute the request.
43      * @param request of the RequestHandlerInput
44      * @return RequestHandlerOutput if mock is supported, otherwise return null.
45      */
46     public RequestHandlerOutput executeRequest(RequestHandlerInput requestHandlerInput) {
47                 VNFOperation vnfOperation = requestHandlerInput.getRequestContext().getAction();
48         switch (vnfOperation) {
49              case Query:
50                 logger.debug("Proceed with mock helper for query VNF");
51                 return new MockQueryHelper().query(requestHandlerInput);
52             default:
53                 // do nothing
54         }
55         return null;
56     }
57 }