Updating FTC 2001, 10, 1 series tests to support a1pms V3 image
[nonrtric.git] / sample-services / ics-producer-consumer / consumer / src / main / java / com / demo / consumer / dme / JobDataSchema.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.google.gson.annotations.SerializedName;
24 import lombok.Data;
25 import lombok.Getter;
26 import lombok.Setter;
27
28 import com.demo.consumer.repository.Job.Parameters.KafkaDeliveryInfo;
29 import com.google.gson.Gson;
30
31 @Data
32 public class JobDataSchema {
33
34     public enum InfoJobStatusValues {
35         REGISTERED, UNREGISTERED
36     }
37     @SerializedName("info_type_id")
38     private String info_type_id;
39     @SerializedName("job_data_schema")
40     private DataSchema job_data_schema;
41     @SerializedName("status")
42     private InfoJobStatusValues status;
43
44     @Override
45     public String toString() {
46         return new Gson().toJson(this);
47     }
48
49     @Getter
50     @Setter
51     public class DataSchema {
52         private String title;
53         private String description;
54         @SerializedName("topic")
55         private String topic;
56         @SerializedName("bootStrapServers")
57         private String bootStrapServers;
58     }
59 }