ICS sample producer and consumer
[nonrtric.git] / sample-services / ics-producer-consumer / consumer / src / main / java / com / demo / consumer / dme / ConsumerJobInfo.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  *
5  * Copyright (C) 2024: OpenInfra Foundation Europe
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 com.demo.consumer.dme;
22
23 import com.fasterxml.jackson.annotation.JsonProperty;
24 import com.google.gson.annotations.SerializedName;
25 import lombok.AllArgsConstructor;
26 import lombok.NoArgsConstructor;
27
28 @NoArgsConstructor
29 @AllArgsConstructor
30 public class ConsumerJobInfo {
31
32     @SerializedName("info_type_id")
33     @JsonProperty(value = "info_type_id", required = true)
34     public String infoTypeId = "";
35
36     @SerializedName("job_owner")
37     @JsonProperty(value = "job_owner", required = true)
38     public String owner = "";
39
40     @SerializedName("job_definition")
41     @JsonProperty(value = "job_definition", required = true)
42     public Object jobDefinition;
43
44     @SerializedName("job_result_uri")
45     @JsonProperty(value = "job_result_uri", required = true)
46     public String jobResultUri = "";
47
48     @SerializedName("status_notification_uri")
49     @JsonProperty(value = "status_notification_uri", required = false)
50     public String statusNotificationUri = "";
51
52 }