d420c5746c34d7e095bf9f9fd7235b4651bce7bd
[nonrtric.git] / information-coordinator-service / src / main / java / org / oransc / ics / controllers / r1consumer / ConsumerTypeSubscriptionInfo.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.oransc.ics.controllers.r1consumer;
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 import lombok.EqualsAndHashCode;
28
29 import org.immutables.gson.Gson;
30
31 @EqualsAndHashCode
32 @Gson.TypeAdapters
33 @Schema(name = "consumer_type_subscription_info", description = "Information for an information type subscription")
34 public class ConsumerTypeSubscriptionInfo {
35
36     @Schema(name = "status_result_uri", description = "The target URI of the subscribed information", required = true)
37     @SerializedName("status_result_uri")
38     @JsonProperty(value = "status_result_uri", required = true)
39     public String statusResultUri = "";
40
41     @Schema(name = "owner", description = "Identity of the owner of the subscription", required = true)
42     @SerializedName("owner")
43     @JsonProperty(value = "owner", required = true)
44     public String owner = "";
45
46     public ConsumerTypeSubscriptionInfo() {
47     }
48
49     public ConsumerTypeSubscriptionInfo(String statusResultUri, String owner) {
50         this.statusResultUri = statusResultUri;
51         this.owner = owner;
52     }
53 }