Rename enrichment coordinator service to information coordinator service
[nonrtric.git] / information-coordinator-service / src / main / java / org / oransc / ics / controllers / a1e / A1eEiJobInfo.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2020 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.a1e;
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
28 import org.immutables.gson.Gson;
29
30 @Gson.TypeAdapters
31 @Schema(name = "EiJobObject", description = "Information for an Enrichment Information Job")
32 public class A1eEiJobInfo {
33
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 = "";
38
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 = "";
43
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;
48
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 = "";
53
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 = "";
58
59     public A1eEiJobInfo() {
60     }
61
62     public A1eEiJobInfo(String eiTypeId, Object jobData, String owner, String targetUri, String statusNotificationUri) {
63         this.eiTypeId = eiTypeId;
64         this.jobDefinition = jobData;
65         this.owner = owner;
66         this.jobResultUri = targetUri;
67         this.statusNotificationUri = statusNotificationUri;
68     }
69 }