Include impacted changes for APPC-346,APPC-348
[appc.git] / appc-provider / appc-provider-bundle / src / main / java / org / onap / appc / provider / lcm / service / ResumeTrafficService.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.provider.lcm.service;
26
27 import org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.Action;
28 import org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.ResumeTrafficInput;
29 import org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.ResumeTrafficOutput;
30 import org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.ResumeTrafficOutputBuilder;
31 import org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.action.identifiers.ActionIdentifiers;
32 import org.opendaylight.yang.gen.v1.org.onap.appc.lcm.rev160108.common.header.CommonHeader;
33 import org.onap.appc.requesthandler.objects.RequestHandlerInput;
34 import org.onap.appc.executor.objects.LCMCommandStatus;
35 import org.onap.appc.util.JsonUtil;
36
37 import java.io.IOException;
38 import java.util.Map;
39 /**
40  * Provide LCM command service for Resume VNF traffic
41  */
42 public class ResumeTrafficService extends AbstractBaseService {
43
44     /**
45      * Constructor
46      */
47     public ResumeTrafficService() {
48         super(Action.ResumeTraffic);
49         logger.debug("ResumeTrafficService starts");
50     }
51
52     /**
53      * Process the Resume request
54      * @param input of ResumeTrafficInput from the REST API input
55      * @return ResumeTrafficOutputBuilder which has the process results
56      */
57     public ResumeTrafficOutputBuilder process(ResumeTrafficInput input) {
58         CommonHeader commonHeader = input.getCommonHeader();
59         ActionIdentifiers actionIdentifiers = input.getActionIdentifiers();
60
61         validate(commonHeader, input.getAction(), actionIdentifiers);
62         if (status == null) {
63             proceedAction(input);
64         }
65
66         ResumeTrafficOutputBuilder outputBuilder = new ResumeTrafficOutputBuilder();
67         outputBuilder.setStatus(status);
68         outputBuilder.setCommonHeader(input.getCommonHeader());
69         return outputBuilder;
70     }
71
72     /**
73      * Validate the input.
74      * Set Status if any error occurs.
75      *
76      * @param input of ResumeTrafficInput from the REST API input
77      */
78     void validate(CommonHeader commonHeader,
79             Action action,
80             ActionIdentifiers actionIdentifiers) {
81                 status = validateVnfId(commonHeader, action, actionIdentifiers);
82                 if (status != null) {
83                         return;
84                 }
85         }
86
87     /**
88      * Proceed to action for the Resume VNF traffic.
89      *
90      * @param input of ResumeTrafficInput from the REST API input
91      */
92     void proceedAction(ResumeTrafficInput input) {
93         RequestHandlerInput requestHandlerInput = getRequestHandlerInput(
94             input.getCommonHeader(), input.getActionIdentifiers(), null, this.getClass().getName());
95         if (requestHandlerInput != null) {
96             executeAction(requestHandlerInput);
97         }
98     }
99 }