X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fportal%2Fnonrtric%2Fcontrolpanel%2Fmodel%2FJobInfo.java;h=9f641535aafc116537ce874384b8a11fcb202dad;hb=37fa97b64c288953ef7ad161d62c999126495352;hp=78bbd87f6bdbb67e2b4cf61731b260818a378f20;hpb=d8e8633cdb1927a79ee1c5866a6c3d7cf455db42;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/model/JobInfo.java b/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/model/JobInfo.java index 78bbd87..9f64153 100644 --- a/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/model/JobInfo.java +++ b/webapp-backend/src/main/java/org/oransc/portal/nonrtric/controlpanel/model/JobInfo.java @@ -20,7 +20,6 @@ package org.oransc.portal.nonrtric.controlpanel.model; -import com.fasterxml.jackson.annotation.JsonProperty; import com.google.gson.annotations.SerializedName; import io.swagger.annotations.ApiModel; @@ -36,27 +35,22 @@ public class JobInfo { @ApiModelProperty(value = "Identity of the EI job", required = true) @SerializedName("ei_job_identity") - @JsonProperty("ei_job_identity") public String id; @ApiModelProperty(value = "Type identity for the job") @SerializedName("ei_type_identity") - @JsonProperty("ei_type_identity") public String typeId; @ApiModelProperty(value = "Json for the job data") @SerializedName("ei_job_data") - @JsonProperty("ei_job_data") public Object jobData; @ApiModelProperty(value = "URI for the target of the EI") @SerializedName("target_uri") - @JsonProperty("target_uri") public String targetUri; @ApiModelProperty(value = "The owner of the job") @SerializedName("owner") - @JsonProperty("owner") public String owner; }