2e395dc759a884452d1f89a6c17616b67477025b
[nonrtric.git] / information-coordinator-service / src / main / java / org / oransc / ics / controllers / r1producer / ProducerRegistrationInfo.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2020 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.oransc.ics.controllers.r1producer;
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 org.immutables.gson.Gson;
31
32 @Gson.TypeAdapters
33 @Schema(name = "producer_registration_info", description = "Information for an Information Producer")
34 public class ProducerRegistrationInfo {
35
36     @Schema(name = "supported_info_types", description = "Supported Information Type IDs", required = true)
37     @SerializedName("supported_info_types")
38     @JsonProperty(value = "supported_info_types", required = true)
39     public Collection<String> supportedTypeIds;
40
41     @Schema(name = "info_job_callback_url", description = "callback for Information Job", required = true)
42     @SerializedName("info_job_callback_url")
43     @JsonProperty(value = "info_job_callback_url", required = true)
44     public String jobCallbackUrl = "";
45
46     @Schema(
47         name = "info_producer_supervision_callback_url",
48         description = "callback for producer supervision",
49         required = true)
50     @SerializedName("info_producer_supervision_callback_url")
51     @JsonProperty(value = "info_producer_supervision_callback_url", required = true)
52     public String producerSupervisionCallbackUrl = "";
53
54     public ProducerRegistrationInfo(Collection<String> types, String jobCallbackUrl,
55         String producerSupervisionCallbackUrl) {
56         this.supportedTypeIds = types;
57         this.jobCallbackUrl = jobCallbackUrl;
58         this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl;
59     }
60
61     public ProducerRegistrationInfo() {
62     }
63
64 }