Creating PM-producer
[nonrtric/plt/ranpm.git] / pmproducer / src / main / java / org / oran / pmproducer / r1 / ProducerRegistrationInfo.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2023 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.pmproducer.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 @Builder
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(name = "info_producer_supervision_callback_url", description = "callback for producer supervision",
47             required = true)
48     @SerializedName("info_producer_supervision_callback_url")
49     @JsonProperty(value = "info_producer_supervision_callback_url", required = true)
50     public String producerSupervisionCallbackUrl;
51
52     public ProducerRegistrationInfo(Collection<String> types, String jobCallbackUrl,
53             String producerSupervisionCallbackUrl) {
54         this.supportedTypeIds = types;
55         this.jobCallbackUrl = jobCallbackUrl;
56         this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl;
57     }
58
59     public ProducerRegistrationInfo() {}
60
61 }