Add PDP Group Deploy and Delete REST API stubs
[policy/pap.git] / main / src / main / java / org / onap / policy / pap / main / rest / PapRestControllerV1.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.pap.main.rest;
23
24 import io.swagger.annotations.Api;
25 import io.swagger.annotations.BasicAuthDefinition;
26 import io.swagger.annotations.Info;
27 import io.swagger.annotations.SecurityDefinition;
28 import io.swagger.annotations.SwaggerDefinition;
29 import io.swagger.annotations.Tag;
30 import java.net.HttpURLConnection;
31 import java.util.UUID;
32 import javax.ws.rs.Path;
33 import javax.ws.rs.Produces;
34 import javax.ws.rs.core.MediaType;
35 import javax.ws.rs.core.Response.ResponseBuilder;
36
37 /**
38  * Version v1 common superclass to provide REST endpoints for PAP component.
39  *
40  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
41  */
42 // @formatter:off
43 @Path("/policy/pap/v1")
44 @Api(value = "Policy Administration (PAP) API")
45 @Produces(MediaType.APPLICATION_JSON)
46 @SwaggerDefinition(
47     info = @Info(description =
48                     "Policy Administration is responsible for the deployment life cycle of policies as well as "
49                     + "interworking with the mechanisms required to orchestrate the nodes and containers on which "
50                     + "policies run. It is also responsible for the administration of policies at run time;"
51                     + " ensuring that policies are available to users, that policies are executing correctly,"
52                     + " and that the state and status of policies is monitored", version = "v1.0",
53                     title = "Policy Administration"),
54     consumes = {MediaType.APPLICATION_JSON},
55     produces = {MediaType.APPLICATION_JSON},
56     schemes = {SwaggerDefinition.Scheme.HTTP, SwaggerDefinition.Scheme.HTTPS},
57     tags = {@Tag(name = "policy-administration", description = "Policy Administration Service Operations")},
58     securityDefinition = @SecurityDefinition(basicAuthDefinitions = {@BasicAuthDefinition(key = "basicAuth")}))
59 // @formatter:on
60 public class PapRestControllerV1 {
61     public static final String EXTENSION_NAME = "interface info";
62
63     public static final String API_VERSION_NAME = "api-version";
64     public static final String API_VERSION = "1.0.0";
65
66     public static final String LAST_MOD_NAME = "last-mod-release";
67     public static final String LAST_MOD_RELEASE = "Dublin";
68
69     public static final String VERSION_MINOR_NAME = "X-MinorVersion";
70     public static final String VERSION_MINOR_DESCRIPTION =
71                     "Used to request or communicate a MINOR version back from the client"
72                                     + " to the server, and from the server back to the client";
73
74     public static final String VERSION_PATCH_NAME = "X-PatchVersion";
75     public static final String VERSION_PATCH_DESCRIPTION = "Used only to communicate a PATCH version in a response for"
76                     + " troubleshooting purposes only, and will not be provided by" + " the client on request";
77
78     public static final String VERSION_LATEST_NAME = "X-LatestVersion";
79     public static final String VERSION_LATEST_DESCRIPTION = "Used only to communicate an API's latest version";
80
81     public static final String REQUEST_ID_NAME = "X-ONAP-RequestID";
82     public static final String REQUEST_ID_HDR_DESCRIPTION = "Used to track REST transactions for logging purpose";
83     public static final String REQUEST_ID_PARAM_DESCRIPTION = "RequestID for http transaction";
84
85     public static final String AUTHORIZATION_TYPE = "basicAuth";
86
87     public static final int AUTHENTICATION_ERROR_CODE = HttpURLConnection.HTTP_UNAUTHORIZED;
88     public static final int AUTHORIZATION_ERROR_CODE = HttpURLConnection.HTTP_FORBIDDEN;
89     public static final int SERVER_ERROR_CODE = HttpURLConnection.HTTP_INTERNAL_ERROR;
90
91     public static final String AUTHENTICATION_ERROR_MESSAGE = "Authentication Error";
92     public static final String AUTHORIZATION_ERROR_MESSAGE = "Authorization Error";
93     public static final String SERVER_ERROR_MESSAGE = "Internal Server Error";
94
95     /**
96      * Adds version headers to the response.
97      *
98      * @param respBuilder response builder
99      * @return the response builder, with version headers
100      */
101     public ResponseBuilder addVersionControlHeaders(ResponseBuilder respBuilder) {
102         return respBuilder.header(VERSION_MINOR_NAME, "0").header(VERSION_PATCH_NAME, "0").header(VERSION_LATEST_NAME,
103                         "1.0.0");
104     }
105
106     /**
107      * Adds logging headers to the response.
108      *
109      * @param respBuilder response builder
110      * @return the response builder, with version logging
111      */
112     public ResponseBuilder addLoggingHeaders(ResponseBuilder respBuilder, UUID requestId) {
113         if (requestId == null) {
114             // Generate a random uuid if client does not embed requestId in rest request
115             return respBuilder.header(REQUEST_ID_NAME, UUID.randomUUID());
116         }
117
118         return respBuilder.header(REQUEST_ID_NAME, requestId);
119     }
120 }