2 * ========================LICENSE_START=================================
5 * Copyright (C) 2020 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.oransc.ics.controllers.r1producer;
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 org.immutables.gson.Gson;
33 @Schema(name = "producer_registration_info", description = "Information for an Information Producer")
34 public class ProducerRegistrationInfo {
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;
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 = "";
47 name = "info_producer_supervision_callback_url",
48 description = "callback for producer supervision",
50 @SerializedName("info_producer_supervision_callback_url")
51 @JsonProperty(value = "info_producer_supervision_callback_url", required = true)
52 public String producerSupervisionCallbackUrl = "";
54 public ProducerRegistrationInfo(Collection<String> types, String jobCallbackUrl,
55 String producerSupervisionCallbackUrl) {
56 this.supportedTypeIds = types;
57 this.jobCallbackUrl = jobCallbackUrl;
58 this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl;
61 public ProducerRegistrationInfo() {