2 * ========================LICENSE_START=================================
5 * Copyright (C) 2020 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.oransc.enrichment.controllers.a1e;
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 = "EiJobObject", description = "Information for an Enrichment Information Job")
32 public class A1eEiJobInfo {
34 @Schema(name = "eiTypeId", description = "EI type Idenitifier of the EI job", required = true)
35 @SerializedName("eiTypeId")
36 @JsonProperty(value = "eiTypeId", required = true)
37 public String eiTypeId = "";
39 @Schema(name = "jobOwner", description = "Identity of the owner of the job", required = true)
40 @SerializedName("jobOwner")
41 @JsonProperty(value = "jobOwner", required = true)
42 public String owner = "";
44 @Schema(name = "jobDefinition", description = "EI type specific job data", required = true)
45 @SerializedName("jobDefinition")
46 @JsonProperty(value = "jobDefinition", required = true)
47 public Object jobDefinition;
49 @Schema(name = "jobResultUri", description = "The target URI of the EI data", required = true)
50 @SerializedName("jobResultUri")
51 @JsonProperty(value = "jobResultUri", required = true)
52 public String jobResultUri = "";
54 @Schema(name = "statusNotificationUri", description = "The target of EI job status notifications", required = false)
55 @SerializedName("jobStatusNotificationUri")
56 @JsonProperty(value = "jobStatusNotificationUri", required = false)
57 public String statusNotificationUri = "";
59 public A1eEiJobInfo() {
62 public A1eEiJobInfo(String eiTypeId, Object jobData, String owner, String targetUri, String statusNotificationUri) {
63 this.eiTypeId = eiTypeId;
64 this.jobDefinition = jobData;
66 this.jobResultUri = targetUri;
67 this.statusNotificationUri = statusNotificationUri;