Package and Create Docker Image for Xacml PDP
[policy/xacml-pdp.git] / main / src / main / java / org / onap / policy / pdpx / main / rest / XacmlPdpRestController.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. 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.pdpx.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
37 /**
38  * Class to provide xacml pdp REST services.
39  *
40  */
41 @Path("/")
42 @Api
43 @Produces(MediaType.APPLICATION_JSON)
44 @SwaggerDefinition(info = @Info(description = "Policy Xacml PDP Service", version = "v1.0", title = "Policy Xacml PDP"),
45         consumes = {MediaType.APPLICATION_JSON}, produces = {MediaType.APPLICATION_JSON},
46         schemes = {SwaggerDefinition.Scheme.HTTP},
47         tags = {@Tag(name = "policy-pdpx", description = "Policy Xacml PDP Service Operations")})
48 public class XacmlPdpRestController {
49
50     @GET
51     @Path("healthcheck")
52     @ApiOperation(value = "Perform a system healthcheck",
53             notes = "Provides healthy status of the Policy Xacml PDP component", response = HealthCheckReport.class)
54     public Response healthcheck() {
55         return Response.status(Response.Status.OK).entity(new HealthCheckProvider().performHealthCheck()).build();
56     }
57
58     @GET
59     @Path("statistics")
60     @ApiOperation(value = "Fetch current statistics",
61             notes = "Provides current statistics of the Policy Xacml PDP component", response = StatisticsReport.class)
62     public Response statistics() {
63         return Response.status(Response.Status.OK).entity(new StatisticsProvider().fetchCurrentStatistics()).build();
64     }
65 }