X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=enrichment-coordinator-service%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fenrichment%2Fcontrollers%2Fa1e%2FA1eEiJobInfo.java;h=61038c3da419f407c0bd61939b96118c552e297d;hb=e29568dbbfe4bb333c936dfe7b54ba639fdef492;hp=05506d21b8c6608a37f78b9699e4724e377391f5;hpb=6c468636c3790e3420da97dab19057892988fa11;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/a1e/A1eEiJobInfo.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/a1e/A1eEiJobInfo.java index 05506d21..61038c3d 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/a1e/A1eEiJobInfo.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/controllers/a1e/A1eEiJobInfo.java @@ -34,12 +34,12 @@ public class A1eEiJobInfo { @Schema(name = "eiTypeId", description = "EI type Idenitifier of the EI job", required = true) @SerializedName("eiTypeId") @JsonProperty(value = "eiTypeId", required = true) - public String eiTypeId; + public String eiTypeId = ""; @Schema(name = "jobOwner", description = "Identity of the owner of the job", required = true) @SerializedName("jobOwner") @JsonProperty(value = "jobOwner", required = true) - public String owner; + public String owner = ""; @Schema(name = "jobDefinition", description = "EI type specific job data", required = true) @SerializedName("jobDefinition") @@ -49,12 +49,12 @@ public class A1eEiJobInfo { @Schema(name = "jobResultUri", description = "The target URI of the EI data", required = true) @SerializedName("jobResultUri") @JsonProperty(value = "jobResultUri", required = true) - public String jobResultUri; + public String jobResultUri = ""; @Schema(name = "statusNotificationUri", description = "The target of EI job status notifications", required = false) @SerializedName("jobStatusNotificationUri") @JsonProperty(value = "jobStatusNotificationUri", required = false) - public String statusNotificationUri; + public String statusNotificationUri = ""; public A1eEiJobInfo() { }