Skip to content

Commit 61d8883

Browse files
weizhouapacheDaanHoogland
authored andcommitted
gson: rename jobId/jobStatus to migrationJobId/migrationJobStatus
1 parent 54a341a commit 61d8883

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

api/src/main/java/org/apache/cloudstack/api/response/ClusterDrsPlanMigrationResponse.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ public class ClusterDrsPlanMigrationResponse extends BaseResponse {
5252

5353
@SerializedName(ApiConstants.JOB_ID)
5454
@Param(description = "id of VM migration async job")
55-
private Long jobId;
55+
private Long migrationJobId;
5656

5757
@SerializedName(ApiConstants.JOB_STATUS)
5858
@Param(description = "Job status of VM migration async job")
59-
private JobInfo.Status jobStatus;
59+
private JobInfo.Status migrationJobStatus;
6060

6161

6262
public ClusterDrsPlanMigrationResponse(String vmId, String vmName, String srcHostId, String srcHostName,
@@ -68,8 +68,8 @@ public ClusterDrsPlanMigrationResponse(String vmId, String vmName, String srcHos
6868
this.srcHostName = srcHostName;
6969
this.destHostId = destHostId;
7070
this.destHostName = destHostName;
71-
this.jobId = jobId;
72-
this.jobStatus = jobStatus;
71+
this.migrationJobId = jobId;
72+
this.migrationJobStatus = jobStatus;
7373
this.setObjectName(ApiConstants.MIGRATIONS);
7474
}
7575
}

0 commit comments

Comments
 (0)