Skip to content

Commit

Permalink
Merge pull request #362 from reportportal/EPMRPP-87813
Browse files Browse the repository at this point in the history
EPMRPP-87813 || Send to the analyzer the id of previous launch
  • Loading branch information
APiankouski authored Nov 23, 2023
2 parents 83f012f + 6a49944 commit 87c7b44
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 87c7b44

Please sign in to comment.