Skip to content

Commit

Permalink
EPMRPP-87813 || Send to the analyzer the id of previous launch
Browse files Browse the repository at this point in the history
  • Loading branch information
APiankouski committed Nov 22, 2023
1 parent 83f012f commit 6a49944
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ public class IndexLaunch {
@JsonProperty("launchNumber")
private Long launchNumber;

@JsonProperty("previousLaunchId")
private Long previousLaunchId;

public IndexLaunch() {
}

Expand Down Expand Up @@ -122,4 +125,12 @@ public Long getLaunchNumber() {
public void setLaunchNumber(Long launchNumber) {
this.launchNumber = launchNumber;
}

public Long getPreviousLaunchId() {
return previousLaunchId;
}

public void setPreviousLaunchId(Long previousLaunchId) {
this.previousLaunchId = previousLaunchId;
}
}

0 comments on commit 6a49944

Please sign in to comment.