Set all cross references of policy/pap
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / HealthCheckRestControllerV1.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2023 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property.
5  *  Modifications Copyright (C) 2021-2022 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 lombok.RequiredArgsConstructor;
26 import org.onap.policy.common.endpoints.report.HealthCheckReport;
27 import org.springframework.context.annotation.Profile;
28 import org.springframework.http.ResponseEntity;
29 import org.springframework.web.bind.annotation.RestController;
30
31 /**
32  * Class to provide REST endpoints for PAP component health check.
33  *
34  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
35  */
36 @RestController
37 @RequiredArgsConstructor
38 @Profile("default")
39 public class HealthCheckRestControllerV1  extends PapRestControllerV1 implements HealthCheckRestControllerV1Api {
40
41     private final HealthCheckProvider provider;
42
43     @Override
44     public ResponseEntity<HealthCheckReport> healthcheck() {
45         var report = provider.performHealthCheck(true);
46         return ResponseEntity.status(report.getCode()).body(report);
47     }
48
49 }