fac7e7698ae0c9dac988a766c4f5ca9274d73943
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / unique-type-rest / unique-type-rest-services / src / main / java / org / openecomp / sdcrests / uniquevalue / rest / UniqueTypes.java
1 /*
2  * Copyright © 2018 European Support Limited
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 package org.openecomp.sdcrests.uniquevalue.rest;
17
18
19 import io.swagger.v3.oas.annotations.OpenAPIDefinition;
20 import io.swagger.v3.oas.annotations.Operation;
21 import io.swagger.v3.oas.annotations.Parameter;
22 import io.swagger.v3.oas.annotations.info.Info;
23 import io.swagger.v3.oas.annotations.responses.ApiResponse;
24 import org.springframework.validation.annotation.Validated;
25
26 import javax.validation.constraints.NotNull;
27 import javax.ws.rs.*;
28 import javax.ws.rs.core.MediaType;
29 import javax.ws.rs.core.Response;
30
31 import static org.openecomp.sdcrests.common.RestConstants.USER_ID_HEADER_PARAM;
32 import static org.openecomp.sdcrests.common.RestConstants.USER_MISSING_ERROR_MSG;
33
34 @Path("/v1.0/unique-types")
35 @Produces(MediaType.APPLICATION_JSON)
36 @Consumes(MediaType.APPLICATION_JSON)
37 @OpenAPIDefinition(info = @Info(title = "Unique Types"))
38 @Validated
39 public interface UniqueTypes {
40
41   @GET
42   @Path("/")
43   @Operation(description = "Lists unique value types")
44   Response listUniqueTypes(@NotNull(message = USER_MISSING_ERROR_MSG)
45                            @HeaderParam(USER_ID_HEADER_PARAM) String user);
46
47   @GET
48   @Path("/{type}/values/{value}")
49   @Operation(description = "Gets unique value")
50   @ApiResponse(responseCode = "200", description = "Indication whether the unique value is occupied")
51   @ApiResponse(responseCode = "404", description = "Unsupported unique type")
52   Response getUniqueValue(
53       @Parameter(description = "The unique value type, for example: 'VlmName'") @PathParam("type") String type,
54       @Parameter(description = "The unique value") @PathParam("value") String value,
55       @NotNull(message = USER_MISSING_ERROR_MSG) @HeaderParam(USER_ID_HEADER_PARAM) String user);
56 }