Merge "ICS tests with istio and JWTs"
[nonrtric.git] / dmaap-adaptor-java / src / main / java / org / oran / dmaapadapter / r1 / ProducerRegistrationInfo.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2021 Nordix Foundation
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.oran.dmaapadapter.r1;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24 import com.google.gson.annotations.SerializedName;
25
26 import io.swagger.v3.oas.annotations.media.Schema;
27
28 import java.util.Collection;
29
30 import lombok.Builder;
31
32 import org.immutables.gson.Gson;
33
34 @Builder
35 @Gson.TypeAdapters
36 @Schema(name = "producer_registration_info", description = "Information for an Information Producer")
37 public class ProducerRegistrationInfo {
38
39     @Schema(name = "supported_info_types", description = "Supported Information Type IDs", required = true)
40     @SerializedName("supported_info_types")
41     @JsonProperty(value = "supported_info_types", required = true)
42     public Collection<String> supportedTypeIds;
43
44     @Schema(name = "info_job_callback_url", description = "callback for Information Job", required = true)
45     @SerializedName("info_job_callback_url")
46     @JsonProperty(value = "info_job_callback_url", required = true)
47     public String jobCallbackUrl;
48
49     @Schema(name = "info_producer_supervision_callback_url", description = "callback for producer supervision",
50             required = true)
51     @SerializedName("info_producer_supervision_callback_url")
52     @JsonProperty(value = "info_producer_supervision_callback_url", required = true)
53     public String producerSupervisionCallbackUrl;
54
55     public ProducerRegistrationInfo(Collection<String> types, String jobCallbackUrl,
56             String producerSupervisionCallbackUrl) {
57         this.supportedTypeIds = types;
58         this.jobCallbackUrl = jobCallbackUrl;
59         this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl;
60     }
61
62     public ProducerRegistrationInfo() {}
63
64 }