Add the Health Check Interface
[holmes/dsa.git] / dmaap-dsa / src / main / java / org / onap / holmes / dsa / resources / HealthCheck.java
1 /*
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.holmes.dsa.resources;
18
19 import io.swagger.annotations.Api;
20 import io.swagger.annotations.ApiOperation;
21 import io.swagger.annotations.SwaggerDefinition;
22 import javax.ws.rs.GET;
23 import javax.ws.rs.Path;
24 import javax.ws.rs.Produces;
25 import javax.ws.rs.core.MediaType;
26 import lombok.extern.slf4j.Slf4j;
27 import org.jvnet.hk2.annotations.Service;
28
29 @Service
30 @SwaggerDefinition
31 @Path("/healthcheck")
32 @Api(tags = {"HealthCheck"})
33 @Produces(MediaType.TEXT_PLAIN)
34 @Slf4j
35 public class HealthCheck {
36     @GET
37     @Produces(MediaType.TEXT_PLAIN)
38     @ApiOperation(value = "Interface for the health check of the data source adapter module for Holmes")
39     public boolean healthCheck(){
40         return true;
41     }
42 }