|
|
@@ -18,24 +18,18 @@ public class FlighttaskProgressExt {
|
|
|
|
|
|
private String trackId;
|
|
|
|
|
|
- private ProgressExtBreakPoint breakPoint;
|
|
|
-
|
|
|
- /**
|
|
|
- * Wayline mission state
|
|
|
- */
|
|
|
- @CloudSDKVersion(since = CloudSDKVersionEnum.V1_0_0)
|
|
|
- private WaylineMissionStateEnum waylineMissionState;
|
|
|
+ private String jobName;
|
|
|
|
|
|
- /**
|
|
|
- * This includes the transitional phase of entering the flight path.
|
|
|
- * For example, 0 indicates that the spacecraft is entering or already executing the first route.
|
|
|
- */
|
|
|
- @CloudSDKVersion(since = CloudSDKVersionEnum.V1_0_0)
|
|
|
- private Integer waylineId;
|
|
|
+ public String getJobName() {
|
|
|
+ return jobName;
|
|
|
+ }
|
|
|
|
|
|
- public FlighttaskProgressExt() {
|
|
|
+ public void setJobName(String jobName) {
|
|
|
+ this.jobName = jobName;
|
|
|
}
|
|
|
|
|
|
+ private ProgressExtBreakPoint breakPoint;
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "FlighttaskProgressExt{" +
|
|
|
@@ -43,12 +37,27 @@ public class FlighttaskProgressExt {
|
|
|
", mediaCount=" + mediaCount +
|
|
|
", flightId='" + flightId + '\'' +
|
|
|
", trackId='" + trackId + '\'' +
|
|
|
+ ", jobName='" + jobName + '\'' +
|
|
|
", breakPoint=" + breakPoint +
|
|
|
", waylineMissionState=" + waylineMissionState +
|
|
|
", waylineId=" + waylineId +
|
|
|
'}';
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * Wayline mission state
|
|
|
+ */
|
|
|
+ @CloudSDKVersion(since = CloudSDKVersionEnum.V1_0_0)
|
|
|
+ private WaylineMissionStateEnum waylineMissionState;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * This includes the transitional phase of entering the flight path.
|
|
|
+ * For example, 0 indicates that the spacecraft is entering or already executing the first route.
|
|
|
+ */
|
|
|
+ @CloudSDKVersion(since = CloudSDKVersionEnum.V1_0_0)
|
|
|
+ private Integer waylineId;
|
|
|
+
|
|
|
+
|
|
|
public Integer getCurrentWaypointIndex() {
|
|
|
return currentWaypointIndex;
|
|
|
}
|