Clean up checkstyle declaration
[policy/api.git] / main / src / main / java / org / onap / policy / api / main / rest / ApiRestController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Samsung Electronics Co., Ltd. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.api.main.rest;
22
23 import io.swagger.annotations.Api;
24 import io.swagger.annotations.ApiOperation;
25 import io.swagger.annotations.Info;
26 import io.swagger.annotations.SwaggerDefinition;
27 import io.swagger.annotations.Tag;
28 import javax.ws.rs.GET;
29 import javax.ws.rs.Path;
30 import javax.ws.rs.Produces;
31 import javax.ws.rs.core.MediaType;
32 import javax.ws.rs.core.Response;
33 import org.onap.policy.common.endpoints.report.HealthCheckReport;
34
35 /**
36  * Class to provide api REST services.
37  *
38  */
39 @Path("/")
40 @Api
41 @Produces(MediaType.APPLICATION_JSON)
42 @SwaggerDefinition(
43         info = @Info(description = "Policy Api Service", version = "v1.0", title = "Policy Api"),
44         consumes = { MediaType.APPLICATION_JSON }, produces = { MediaType.APPLICATION_JSON },
45         schemes = { SwaggerDefinition.Scheme.HTTP },
46         tags = { @Tag(name = "policy-api", description = "Policy Api Service Operations") })
47 public class ApiRestController {
48
49     @GET
50     @Path("healthcheck")
51     @Produces(MediaType.APPLICATION_JSON)
52     @ApiOperation(value = "Perform a system healthcheck",
53             notes = "Provides healthy status of the Policy Api component", response = HealthCheckReport.class)
54     public Response healthcheck() {
55         return Response.status(Response.Status.OK).entity(new HealthCheckProvider().performHealthCheck()).build();
56     }
57 }