2 * ========================LICENSE_START=================================
5 * Copyright (C) 2021 Nordix Foundation
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
21 package org.oran.dmaapadapter.r1;
23 import com.fasterxml.jackson.annotation.JsonProperty;
24 import com.google.gson.annotations.SerializedName;
26 import io.swagger.v3.oas.annotations.media.Schema;
28 import java.util.Collection;
30 import lombok.Builder;
32 import org.immutables.gson.Gson;
36 @Schema(name = "producer_registration_info", description = "Information for an Information Producer")
37 public class ProducerRegistrationInfo {
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;
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;
49 @Schema(name = "info_producer_supervision_callback_url", description = "callback for producer supervision",
51 @SerializedName("info_producer_supervision_callback_url")
52 @JsonProperty(value = "info_producer_supervision_callback_url", required = true)
53 public String producerSupervisionCallbackUrl;
55 public ProducerRegistrationInfo(Collection<String> types, String jobCallbackUrl,
56 String producerSupervisionCallbackUrl) {
57 this.supportedTypeIds = types;
58 this.jobCallbackUrl = jobCallbackUrl;
59 this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl;
62 public ProducerRegistrationInfo() {}