531a683aca28d29253041090bacf975f0dbdc981
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / tenantrest / HealthCheckHandler.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. 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  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.adapters.tenantrest;
22
23
24
25 import javax.ws.rs.GET;
26 import javax.ws.rs.HEAD;
27 import javax.ws.rs.Path;
28 import javax.ws.rs.Produces;
29 import javax.ws.rs.core.Response;
30
31 import org.apache.http.HttpStatus;
32
33 import org.openecomp.mso.logger.MsoLogger;
34
35 @Path("/")
36 public class HealthCheckHandler {
37         
38         private static MsoLogger msoLogger = MsoLogger.getMsoLogger(MsoLogger.Catalog.RA);
39     private static final String CHECK_HTML = "<!DOCTYPE html><html><head><meta charset=\"ISO-8859-1\"><title>Health Check</title></head><body>Application ready</body></html>";
40     private static final Response HEALTH_CHECK_RESPONSE = Response.status (HttpStatus.SC_OK)
41                                                                   .entity (CHECK_HTML)
42                                                                   .build ();
43     @HEAD
44     @GET
45     @Path("/healthcheck")
46     @Produces("text/html")
47     public Response healthcheck () {
48         msoLogger.debug ("Health check call in Tenant Adapter");
49         return HEALTH_CHECK_RESPONSE;
50     }
51 }