Fixed sonar issues in policy-pap
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / PdpGroupStateChangeControllerV1.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2023 Nordix Foundation.
4  *  Modifications Copyright (C) 2019, 2021 AT&T Intellectual Property.
5  *  Modifications Copyright (C) 2021, 2023 Bell Canada. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.pap.main.rest;
24
25 import java.util.UUID;
26 import lombok.RequiredArgsConstructor;
27 import org.apache.commons.lang3.tuple.Pair;
28 import org.onap.policy.models.base.PfModelException;
29 import org.onap.policy.models.pap.concepts.PdpGroupStateChangeResponse;
30 import org.onap.policy.models.pdp.enums.PdpState;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.context.annotation.Profile;
34 import org.springframework.http.HttpStatus;
35 import org.springframework.http.ResponseEntity;
36 import org.springframework.web.bind.annotation.RestController;
37
38 /**
39  * Class to provide REST end points for PAP component to change state of a PDP group.
40  *
41  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
42  */
43 @RestController
44 @RequiredArgsConstructor
45 @Profile("default")
46 public class PdpGroupStateChangeControllerV1 extends PapRestControllerV1 implements PdpGroupStateChangeControllerV1Api {
47
48     private static final Logger logger = LoggerFactory.getLogger(PdpGroupStateChangeControllerV1.class);
49     private final PdpGroupStateChangeProvider provider;
50
51     /**
52      * Changes state of a PDP group.
53      *
54      * @param requestId request ID used in ONAP logging
55      * @param groupName name of the PDP group to be deleted
56      * @param state state of the PDP group
57      * @return a response
58      * @throws PfModelException Exception thrown by changeGroupState
59      */
60     @Override
61     public ResponseEntity<PdpGroupStateChangeResponse> changeGroupState(
62         String groupName, PdpState state, UUID requestId) {
63         try {
64             final Pair<HttpStatus, PdpGroupStateChangeResponse> pair = provider.changeGroupState(groupName, state);
65             return addLoggingHeaders(addVersionControlHeaders(ResponseEntity.status(pair.getLeft())), requestId)
66                 .body(pair.getRight());
67         } catch (PfModelException e) {
68             logger.warn("changeGroupState failed", e);
69         }
70         return new ResponseEntity<>(HttpStatus.INTERNAL_SERVER_ERROR);
71     }
72 }