2 * ========================LICENSE_START=================================
5 * Copyright (C) 2021 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.oran.dmaapadapter.r1;
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 org.immutables.gson.Gson;
31 @Schema(name = "producer_info_job_request",
32 description = "The body of the Information Producer callbacks for Information Job creation and deletion")
33 public class ProducerJobInfo {
35 @Schema(name = "info_job_identity", description = "Identity of the Information Job", required = true)
36 @SerializedName("info_job_identity")
37 @JsonProperty("info_job_identity")
38 public String id = "";
40 @Schema(name = "info_type_identity", description = "Type identity for the job")
41 @SerializedName("info_type_identity")
42 @JsonProperty("info_type_identity")
43 public String typeId = "";
45 @Schema(name = "info_job_data", description = "Json for the job data")
46 @SerializedName("info_job_data")
47 @JsonProperty("info_job_data")
48 public Object jobData;
50 @Schema(name = "target_uri", description = "URI for the target of the produced Information")
51 @SerializedName("target_uri")
52 @JsonProperty("target_uri")
53 public String targetUri = "";
55 @Schema(name = "owner", description = "The owner of the job")
56 @SerializedName("owner")
57 @JsonProperty("owner")
58 public String owner = "";
60 @Schema(name = "last_updated", description = "The time when the job was last updated or created (ISO-8601)")
61 @SerializedName("last_updated")
62 @JsonProperty("last_updated")
63 public String lastUpdated = "";
65 public ProducerJobInfo(Object jobData, String id, String typeId, String targetUri, String owner,
68 this.jobData = jobData;
70 this.targetUri = targetUri;
72 this.lastUpdated = lastUpdated;
75 public ProducerJobInfo() {}